public enum CodeAreaOperationType extends java.lang.Enum<CodeAreaOperationType>
Enum Constant and Description |
---|
EDIT_DATA
Edit data operation.
|
INSERT_DATA
Insert data operation.
|
MODIFY_DATA
Modify data operation.
|
MOVE_DATA
Move data operation.
|
REMOVE_DATA
Remove data operation.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getCaption() |
static CodeAreaOperationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CodeAreaOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodeAreaOperationType INSERT_DATA
public static final CodeAreaOperationType REMOVE_DATA
public static final CodeAreaOperationType MODIFY_DATA
public static final CodeAreaOperationType MOVE_DATA
public static final CodeAreaOperationType EDIT_DATA
public static CodeAreaOperationType[] values()
for (CodeAreaOperationType c : CodeAreaOperationType.values()) System.out.println(c);
public static CodeAreaOperationType 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 getCaption()