public static enum ActionExecutionResult.Type extends java.lang.Enum<ActionExecutionResult.Type>
Enum Constant and Description |
---|
DISPLAY_PAGE |
NONE |
NOTIFICATION |
PAGE |
URL |
Modifier and Type | Method and Description |
---|---|
static ActionExecutionResult.Type |
create(java.lang.String value) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static ActionExecutionResult.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ActionExecutionResult.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionExecutionResult.Type DISPLAY_PAGE
public static final ActionExecutionResult.Type NONE
public static final ActionExecutionResult.Type NOTIFICATION
public static final ActionExecutionResult.Type PAGE
public static final ActionExecutionResult.Type URL
public static ActionExecutionResult.Type[] values()
for (ActionExecutionResult.Type c : ActionExecutionResult.Type.values()) System.out.println(c);
public static ActionExecutionResult.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 nullpublic static ActionExecutionResult.Type create(java.lang.String value)
public java.lang.String getValue()
public java.lang.String toString()
toString
in class java.lang.Enum<ActionExecutionResult.Type>