public static enum HandlerResult.Status extends Enum<HandlerResult.Status>
Enum Constant and Description |
---|
COMPLETED |
NO_ACTION |
REDIRECTED |
Modifier and Type | Method and Description |
---|---|
static HandlerResult.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HandlerResult.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HandlerResult.Status COMPLETED
public static final HandlerResult.Status NO_ACTION
public static final HandlerResult.Status REDIRECTED
public static HandlerResult.Status[] values()
for (HandlerResult.Status c : HandlerResult.Status.values()) System.out.println(c);
public static HandlerResult.Status 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 nullThis work is licensed under a Creative Commons Attribution 4.0 International License.