public enum CodeType extends Enum<CodeType>
Enum Constant and Description |
---|
BACKSPACE |
BACKWARD_WORD |
BEGINNING_OF_LINE |
BREAK |
CHAR |
CLOSE |
DOWN |
END_OF_LINE |
FORWARD_WORD |
LEFT |
RIGHT |
TAB |
UP |
Modifier and Type | Method and Description |
---|---|
static CodeType |
valueOf(int ordinal) |
static CodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodeType BACKWARD_WORD
public static final CodeType FORWARD_WORD
public static final CodeType BEGINNING_OF_LINE
public static final CodeType END_OF_LINE
public static CodeType[] values()
for (CodeType c : CodeType.values()) System.out.println(c);
public static CodeType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2015 eXo Platform SAS. All Rights Reserved.