public enum FailStrategy extends java.lang.Enum<FailStrategy>
| Enum Constant and Description |
|---|
CANCEL
Cancel the transformation of the current class.
|
CONTINUE
Try to continue the transformation.
|
EXIT
Exit the JVM.
|
THROW
Throw the error to the caller.
|
| Modifier and Type | Method and Description |
|---|---|
static FailStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FailStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FailStrategy CONTINUE
public static final FailStrategy CANCEL
public static final FailStrategy EXIT
public static final FailStrategy THROW
public static FailStrategy[] values()
for (FailStrategy c : FailStrategy.values()) System.out.println(c);
public static FailStrategy 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