public static enum Dependency.OrElse extends Enum<Dependency.OrElse>
| Enum Constant and Description |
|---|
EXECUTE_ACTION |
FAIL |
| Modifier and Type | Method and Description |
|---|---|
static Dependency.OrElse |
fromValue(String value) |
String |
toString() |
String |
value() |
static Dependency.OrElse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Dependency.OrElse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dependency.OrElse FAIL
public static final Dependency.OrElse EXECUTE_ACTION
public static Dependency.OrElse[] values()
for (Dependency.OrElse c : Dependency.OrElse.values()) System.out.println(c);
public static Dependency.OrElse 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 String toString()
toString in class Enum<Dependency.OrElse>public String value()
public static Dependency.OrElse fromValue(String value)