public static enum Action.Status extends Enum<Action.Status>
Enum Constant and Description |
---|
COMPLETED |
ERRORED |
IN_PROGRESS |
Modifier and Type | Method and Description |
---|---|
static Action.Status |
fromValue(String value) |
static Action.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Action.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Action.Status COMPLETED
public static final Action.Status IN_PROGRESS
public static final Action.Status ERRORED
public static Action.Status[] values()
for (Action.Status c : Action.Status.values()) System.out.println(c);
public static Action.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 nullpublic static Action.Status fromValue(String value)
Copyright © 2009-2016 The Apache Software Foundation. All Rights Reserved.