public static enum ExpressionProblem.Severity extends java.lang.Enum<ExpressionProblem.Severity>
Enum Constant and Description |
---|
DANGER
The problem is a warning that you might be able to ignore depending on the input.
|
ERROR
The problem is an unrecoverable error.
|
WARNING
The problem points out a potential issue that may be intentional.
|
Modifier and Type | Method and Description |
---|---|
static ExpressionProblem.Severity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionProblem.Severity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpressionProblem.Severity ERROR
public static final ExpressionProblem.Severity DANGER
public static final ExpressionProblem.Severity WARNING
public static ExpressionProblem.Severity[] values()
for (ExpressionProblem.Severity c : ExpressionProblem.Severity.values()) System.out.println(c);
public static ExpressionProblem.Severity 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