public static enum EntitySelectionExpressionParsingException.EParsingExceptionMessage extends java.lang.Enum<EntitySelectionExpressionParsingException.EParsingExceptionMessage>
| Enum Constant and Description |
|---|
EXPECTED_BINARY_OPERATOR
Message.
|
EXPECTED_EXPRESSION
Message.
|
MISPLACED_CLOSING_PARENTHESIS
Message.
|
MISSING_CLOSING_PARENTHESIS
Message.
|
PARAMETER_MISSING
Message.
|
PREDICATE_CONSTRUCTION_FAILED
Message.
|
PREDICATE_NOT_FOUND
Message.
|
UNEXPECTED_CHARACTER
Message.
|
UNSUPPORTED_PARAMETER
Message.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getMessage()
Returns the message for the exception.
|
static EntitySelectionExpressionParsingException.EParsingExceptionMessage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EntitySelectionExpressionParsingException.EParsingExceptionMessage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntitySelectionExpressionParsingException.EParsingExceptionMessage EXPECTED_EXPRESSION
public static final EntitySelectionExpressionParsingException.EParsingExceptionMessage EXPECTED_BINARY_OPERATOR
public static final EntitySelectionExpressionParsingException.EParsingExceptionMessage PREDICATE_CONSTRUCTION_FAILED
public static final EntitySelectionExpressionParsingException.EParsingExceptionMessage PARAMETER_MISSING
public static final EntitySelectionExpressionParsingException.EParsingExceptionMessage UNSUPPORTED_PARAMETER
public static final EntitySelectionExpressionParsingException.EParsingExceptionMessage PREDICATE_NOT_FOUND
public static final EntitySelectionExpressionParsingException.EParsingExceptionMessage MISSING_CLOSING_PARENTHESIS
public static final EntitySelectionExpressionParsingException.EParsingExceptionMessage MISPLACED_CLOSING_PARENTHESIS
public static final EntitySelectionExpressionParsingException.EParsingExceptionMessage UNEXPECTED_CHARACTER
public static EntitySelectionExpressionParsingException.EParsingExceptionMessage[] values()
for (EntitySelectionExpressionParsingException.EParsingExceptionMessage c : EntitySelectionExpressionParsingException.EParsingExceptionMessage.values()) System.out.println(c);
public static EntitySelectionExpressionParsingException.EParsingExceptionMessage 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()