public static enum NavigationListener.NavigationDirection extends Enum<NavigationListener.NavigationDirection>
| Enum Constant and Description |
|---|
CANCEL
The navigation directions defined by this wizard: cancel the whole wizard, go to previous step, go to next
step and finish the whole wizard.
|
FINISH |
NEXT |
PREVIOUS |
| Modifier and Type | Method and Description |
|---|---|
static NavigationListener.NavigationDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NavigationListener.NavigationDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NavigationListener.NavigationDirection CANCEL
public static final NavigationListener.NavigationDirection PREVIOUS
public static final NavigationListener.NavigationDirection NEXT
public static final NavigationListener.NavigationDirection FINISH
public static NavigationListener.NavigationDirection[] values()
for (NavigationListener.NavigationDirection c : NavigationListener.NavigationDirection.values()) System.out.println(c);
public static NavigationListener.NavigationDirection 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 © 2004–2015 XWiki. All rights reserved.