public enum PreconditionErrorPolicy extends Enum<PreconditionErrorPolicy>
| Enum Constant and Description |
|---|
CONTINUE |
FAIL |
MARK_AS_EXECUTED |
| Modifier and Type | Method and Description |
|---|---|
static PreconditionErrorPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PreconditionErrorPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PreconditionErrorPolicy CONTINUE
public static final PreconditionErrorPolicy MARK_AS_EXECUTED
public static final PreconditionErrorPolicy FAIL
public static PreconditionErrorPolicy[] values()
for (PreconditionErrorPolicy c : PreconditionErrorPolicy.values()) System.out.println(c);
public static PreconditionErrorPolicy 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 © 2016. All Rights Reserved.