public static enum Interactable.FocusChangeDirection extends Enum<Interactable.FocusChangeDirection>
Enum Constant and Description |
---|
DOWN
The next interactable component, going down.
|
LEFT
The previous interactable component, going left.
|
RIGHT
The next interactable component, going right.
|
UP
The previous interactable component, going up.
|
Modifier and Type | Method and Description |
---|---|
static Interactable.FocusChangeDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Interactable.FocusChangeDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Interactable.FocusChangeDirection DOWN
public static final Interactable.FocusChangeDirection RIGHT
public static final Interactable.FocusChangeDirection UP
public static final Interactable.FocusChangeDirection LEFT
public static Interactable.FocusChangeDirection[] values()
for (Interactable.FocusChangeDirection c : Interactable.FocusChangeDirection.values()) System.out.println(c);
public static Interactable.FocusChangeDirection 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. All Rights Reserved.