public static enum BooleanExpression.SyntaxError extends java.lang.Enum<BooleanExpression.SyntaxError>
| Enum Constant and Description |
|---|
DIGIT_AT_VARIABLE_START |
ILLEGAL_CHARACTER |
LITERAL_EXPECTED |
OPERATOR_OR_AND_EXPECTED |
UNEXPECTED_NEGATION |
VARIABLE_EXPECTED |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getMessage(java.lang.Object... args) |
static BooleanExpression.SyntaxError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BooleanExpression.SyntaxError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BooleanExpression.SyntaxError VARIABLE_EXPECTED
public static final BooleanExpression.SyntaxError LITERAL_EXPECTED
public static final BooleanExpression.SyntaxError OPERATOR_OR_AND_EXPECTED
public static final BooleanExpression.SyntaxError UNEXPECTED_NEGATION
public static final BooleanExpression.SyntaxError DIGIT_AT_VARIABLE_START
public static final BooleanExpression.SyntaxError ILLEGAL_CHARACTER
public static BooleanExpression.SyntaxError[] values()
for (BooleanExpression.SyntaxError c : BooleanExpression.SyntaxError.values()) System.out.println(c);
public static BooleanExpression.SyntaxError 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 getMessage(java.lang.Object... args)