@Deprecated public static enum Step.Result extends java.lang.Enum<Step.Result>
Enum Constant and Description |
---|
Fail
Deprecated.
|
Success
Deprecated.
|
Warn
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static Step.Result |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static Step.Result[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Step.Result Success
public static final Step.Result Fail
public static final Step.Result Warn
public static Step.Result[] values()
for (Step.Result c : Step.Result.values()) System.out.println(c);
public static Step.Result 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 null