public enum VariableErrorHandling extends java.lang.Enum<VariableErrorHandling>
VariableErrorHandlingDescriptor
to configure the error handling for a single variable type.Enum Constant and Description |
---|
ERROR_MESSAGE
Replace an undefined variable with an error message
|
EXCEPTION
Throw an exception if an undefined variable is found
|
IGNORE
Ignore an undefined variable and leave it in place
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static VariableErrorHandling |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VariableErrorHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VariableErrorHandling IGNORE
public static final VariableErrorHandling ERROR_MESSAGE
public static final VariableErrorHandling EXCEPTION
public static VariableErrorHandling[] values()
for (VariableErrorHandling c : VariableErrorHandling.values()) System.out.println(c);
public static VariableErrorHandling 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<VariableErrorHandling>