public static enum NavigationEvent.Type extends java.lang.Enum<NavigationEvent.Type>
Enum Constant and Description |
---|
ADD
Identifies the addition of one item to the model.
|
CHANGE_CONTEXT
Identifies one context change in the model.
|
CHANGE_DATA
Identifies one data change in the model.
|
NAVIGATE
Identifies the current navigated item has changed.
|
REMOVE
Identifies the removal of one item from the model.
|
Modifier and Type | Method and Description |
---|---|
static NavigationEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NavigationEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NavigationEvent.Type CHANGE_DATA
public static final NavigationEvent.Type CHANGE_CONTEXT
public static final NavigationEvent.Type ADD
public static final NavigationEvent.Type REMOVE
public static final NavigationEvent.Type NAVIGATE
public static NavigationEvent.Type[] values()
for (NavigationEvent.Type c : NavigationEvent.Type.values()) System.out.println(c);
public static NavigationEvent.Type 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 nullCopyright © 2005-2023 Potix Corporation. All Rights Reserved.