public static enum EditorNavigationDelegate.Result extends java.lang.Enum<EditorNavigationDelegate.Result>
Enum Constant and Description |
---|
CONTINUE
Continue navigation request processing.
|
STOP
Navigation request is completely handled by the current delegate and no further processing is required.
|
Modifier and Type | Method and Description |
---|---|
static EditorNavigationDelegate.Result |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EditorNavigationDelegate.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EditorNavigationDelegate.Result STOP
public static final EditorNavigationDelegate.Result CONTINUE
public static EditorNavigationDelegate.Result[] values()
for (EditorNavigationDelegate.Result c : EditorNavigationDelegate.Result.values()) System.out.println(c);
public static EditorNavigationDelegate.Result 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