public enum CodeAreaCommandType extends java.lang.Enum<CodeAreaCommandType>
Enum Constant and Description |
---|
COMPOUND
Compound command.
|
DATA_EDITED
Edit data command.
|
DATA_INSERTED
Insert data command.
|
DATA_MODIFIED
Modify data command.
|
DATA_MOVED
Move data command.
|
DATA_REMOVED
Remove data command.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getCaption() |
static CodeAreaCommandType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CodeAreaCommandType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodeAreaCommandType DATA_INSERTED
public static final CodeAreaCommandType DATA_REMOVED
public static final CodeAreaCommandType DATA_MODIFIED
public static final CodeAreaCommandType DATA_MOVED
public static final CodeAreaCommandType COMPOUND
public static final CodeAreaCommandType DATA_EDITED
public static CodeAreaCommandType[] values()
for (CodeAreaCommandType c : CodeAreaCommandType.values()) System.out.println(c);
public static CodeAreaCommandType 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()