public enum NavigationMethod extends java.lang.Enum<NavigationMethod> implements ValueEnum
| Enum Constant and Description |
|---|
BACK_CLICK a "back" NavigationButton has been clicked |
HISTORY_CALLBACK browser navigation triggered SplitPane navigation |
NAVIGATE_PANE application code directly called navigatePane() |
PROGRAMMATIC application code called setCurrentPane(), showNavigationPane(), showListPane(), showDetailPane(), etc. |
SELECTION_CHANGED a seletion change automatically called navigatePane() |
SIDE_CLICK a side panel NavigationButton has been clicked |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String | getValue() |
static NavigationMethod | valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static NavigationMethod[] | values() Returns an array containing the constants of this enum type, in the order they are declared. |
public static final NavigationMethod BACK_CLICK
NavigationButton has been clicked If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "backClick".
public static final NavigationMethod SIDE_CLICK
NavigationButton has been clicked If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "sideClick".
public static final NavigationMethod PROGRAMMATIC
setCurrentPane(), showNavigationPane(), showListPane(), showDetailPane(), etc. If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "programmatic".
public static final NavigationMethod NAVIGATE_PANE
navigatePane() If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "navigatePane".
public static final NavigationMethod SELECTION_CHANGED
navigatePane() If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "selectionChanged".
public static final NavigationMethod HISTORY_CALLBACK
SplitPane navigation If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "historyCallback".
public static NavigationMethod[] values()
for (NavigationMethod c : NavigationMethod.values()) System.out.println(c);
public static NavigationMethod 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