public static enum DialogSystem.DynamicEditAction extends java.lang.Enum<DialogSystem.DynamicEditAction>
Enum Constant and Description |
---|
addNewInstance
Add new instance(s) into a specific entity.
|
deleteInstance
Delete instances from a specific entity.
|
updateNewInstance
Update existing entity with new defined instances.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static DialogSystem.DynamicEditAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DialogSystem.DynamicEditAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DialogSystem.DynamicEditAction addNewInstance
public static final DialogSystem.DynamicEditAction deleteInstance
public static final DialogSystem.DynamicEditAction updateNewInstance
public java.lang.String getValue()
public static DialogSystem.DynamicEditAction 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 static DialogSystem.DynamicEditAction[] values()
for (DialogSystem.DynamicEditAction c : DialogSystem.DynamicEditAction.values()) System.out.println(c);