public enum OnenotePatchActionType extends java.lang.Enum<OnenotePatchActionType>
| Enum Constant and Description |
|---|
APPEND
Append
|
DELETE
Delete
|
INSERT
Insert
|
PREPEND
Prepend
|
REPLACE
Replace
|
UNEXPECTED_VALUE
For OnenotePatchActionType values that were not expected from the service
|
| Modifier and Type | Method and Description |
|---|---|
static OnenotePatchActionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OnenotePatchActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OnenotePatchActionType REPLACE
public static final OnenotePatchActionType APPEND
public static final OnenotePatchActionType DELETE
public static final OnenotePatchActionType INSERT
public static final OnenotePatchActionType PREPEND
public static final OnenotePatchActionType UNEXPECTED_VALUE
public static OnenotePatchActionType[] values()
for (OnenotePatchActionType c : OnenotePatchActionType.values()) System.out.println(c);
public static OnenotePatchActionType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null