public enum NavigateDirection extends Enum<NavigateDirection>
| Enum Constant and Description |
|---|
NavigateDirection_FirstChild
The value of this constant is 3
|
NavigateDirection_LastChild
The value of this constant is 4
|
NavigateDirection_NextSibling
The value of this constant is 1
|
NavigateDirection_Parent
The value of this constant is 0
|
NavigateDirection_PreviousSibling
The value of this constant is 2
|
| Modifier and Type | Method and Description |
|---|---|
static NavigateDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NavigateDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NavigateDirection NavigateDirection_Parent
The value of this constant is 0
public static final NavigateDirection NavigateDirection_NextSibling
The value of this constant is 1
public static final NavigateDirection NavigateDirection_PreviousSibling
The value of this constant is 2
public static final NavigateDirection NavigateDirection_FirstChild
The value of this constant is 3
public static final NavigateDirection NavigateDirection_LastChild
The value of this constant is 4
public static NavigateDirection[] values()
for (NavigateDirection c : NavigateDirection.values()) System.out.println(c);
public static NavigateDirection 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 © 2016. All rights reserved.