public enum ModelAction extends java.lang.Enum<ModelAction>
Enum Constant and Description |
---|
ADD_P |
ADD_S |
BASIC_EDIT |
DELETE |
DELETE_P |
DELETE_S |
Modifier and Type | Method and Description |
---|---|
static ModelAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModelAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelAction DELETE_S
public static final ModelAction DELETE_P
public static final ModelAction BASIC_EDIT
public static final ModelAction DELETE
public static final ModelAction ADD_S
public static final ModelAction ADD_P
public static ModelAction[] values()
for (ModelAction c : ModelAction.values()) System.out.println(c);
public static ModelAction 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