public enum DATASET_ACTION extends java.lang.Enum<DATASET_ACTION>
Enum Constant and Description |
---|
APPEND
Message is of type Append
|
DELETE
Message is of type Delete
|
INFORMATION
Message is of type Information
|
REPLACE
Message is of type Replace
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAction()
Returns either Append, Replace, Delete, or Information as a String.
|
static DATASET_ACTION |
getAction(java.lang.String action)
From an action (Append, Update, Replace, Delete, or Information) will return the DATASET_ACTION enum equivalent,
The input string is case insensitive, and 'update' treats as Append.
|
static DATASET_ACTION |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DATASET_ACTION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DATASET_ACTION APPEND
public static final DATASET_ACTION REPLACE
public static final DATASET_ACTION DELETE
public static final DATASET_ACTION INFORMATION
public static DATASET_ACTION[] values()
for (DATASET_ACTION c : DATASET_ACTION.values()) System.out.println(c);
public static DATASET_ACTION 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 nullpublic java.lang.String getAction()
public static DATASET_ACTION getAction(java.lang.String action)
action
-