| Enum Constant and Description |
|---|
ALL |
BEGINNING |
END |
NEXT |
NEXT_BIG_WORD |
NEXT_WORD |
PREV |
PREV_BIG_WORD |
PREV_WORD |
| Modifier and Type | Method and Description |
|---|---|
static Movement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Movement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Movement PREV
public static final Movement NEXT
public static final Movement BEGINNING
public static final Movement END
public static final Movement NEXT_WORD
public static final Movement PREV_WORD
public static final Movement NEXT_BIG_WORD
public static final Movement PREV_BIG_WORD
public static final Movement ALL
public static Movement[] values()
for (Movement c : Movement.values()) System.out.println(c);
public static Movement 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