public enum NavigationDirection extends java.lang.Enum<NavigationDirection>
| Enum Constant and Description |
|---|
BACK
Navigate backwards - renders as an arrow pointing left
|
FORWARD
Navigate forward - renders as an arrow pointing right
|
NONE
No navigation direction - renders as a square button
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
_getClassName() |
static NavigationDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NavigationDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NavigationDirection NONE
public static final NavigationDirection FORWARD
public static final NavigationDirection BACK
public static NavigationDirection[] values()
for (NavigationDirection c : NavigationDirection.values()) System.out.println(c);
public static NavigationDirection 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@SGWTInternal public final java.lang.String _getClassName()