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