public static enum PerformableTree.Status extends Enum<PerformableTree.Status>
Enum Constant and Description |
---|
FAILED |
NOT_ALLOWED |
NOT_PERFORMED |
PENDING |
SUCCESSFUL |
Modifier and Type | Method and Description |
---|---|
static PerformableTree.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PerformableTree.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PerformableTree.Status SUCCESSFUL
public static final PerformableTree.Status FAILED
public static final PerformableTree.Status PENDING
public static final PerformableTree.Status NOT_PERFORMED
public static final PerformableTree.Status NOT_ALLOWED
public static PerformableTree.Status[] values()
for (PerformableTree.Status c : PerformableTree.Status.values()) System.out.println(c);
public static PerformableTree.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 nullCopyright © 2003–2016. All rights reserved.