Enum Class SpelMessage
- All Implemented Interfaces:
Serializable
,Comparable<SpelMessage>
,Constable
Contains all the messages that can be produced by the Spring Expression Language.
Each message has a kind (info, warn, error) and a code number. Tests can be written to expect particular code numbers rather than particular text, enabling the message text to more easily be modified and the tests to run successfully in different locales.
When a message is formatted, it will have this kind of form, capturing the prefix and the error kind:
EL1005E: Type cannot be found 'String'
- Since:
- 3.0
- Author:
- Andy Clement, Juergen Hoeller, Sam Brannen
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionformatMessage
(Object... inserts) Produce a complete message including the prefix and with the inserts applied to the message.static SpelMessage
Returns the enum constant of this class with the specified name.static SpelMessage[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TYPE_CONVERSION_ERROR
-
CONSTRUCTOR_NOT_FOUND
-
CONSTRUCTOR_INVOCATION_PROBLEM
-
METHOD_NOT_FOUND
-
TYPE_NOT_FOUND
-
FUNCTION_NOT_DEFINED
-
PROPERTY_OR_FIELD_NOT_READABLE_ON_NULL
-
PROPERTY_OR_FIELD_NOT_READABLE
-
PROPERTY_OR_FIELD_NOT_WRITABLE_ON_NULL
-
PROPERTY_OR_FIELD_NOT_WRITABLE
-
METHOD_CALL_ON_NULL_OBJECT_NOT_ALLOWED
-
CANNOT_INDEX_INTO_NULL_VALUE
-
NOT_COMPARABLE
-
INCORRECT_NUMBER_OF_ARGUMENTS_TO_FUNCTION
-
INVALID_TYPE_FOR_SELECTION
-
RESULT_OF_SELECTION_CRITERIA_IS_NOT_BOOLEAN
-
BETWEEN_RIGHT_OPERAND_MUST_BE_TWO_ELEMENT_LIST
-
INVALID_PATTERN
-
PROJECTION_NOT_SUPPORTED_ON_TYPE
-
ARGLIST_SHOULD_NOT_BE_EVALUATED
-
EXCEPTION_DURING_PROPERTY_READ
-
FUNCTION_REFERENCE_CANNOT_BE_INVOKED
-
EXCEPTION_DURING_FUNCTION_CALL
-
ARRAY_INDEX_OUT_OF_BOUNDS
-
COLLECTION_INDEX_OUT_OF_BOUNDS
-
STRING_INDEX_OUT_OF_BOUNDS
-
INDEXING_NOT_SUPPORTED_FOR_TYPE
-
INSTANCEOF_OPERATOR_NEEDS_CLASS_OPERAND
-
EXCEPTION_DURING_METHOD_INVOCATION
-
OPERATOR_NOT_SUPPORTED_BETWEEN_TYPES
-
PROBLEM_LOCATING_METHOD
-
SETVALUE_NOT_SUPPORTED
-
MULTIPLE_POSSIBLE_METHODS
-
EXCEPTION_DURING_PROPERTY_WRITE
-
NOT_AN_INTEGER
-
NOT_A_LONG
-
INVALID_FIRST_OPERAND_FOR_MATCHES_OPERATOR
-
INVALID_SECOND_OPERAND_FOR_MATCHES_OPERATOR
-
FUNCTION_MUST_BE_STATIC
-
NOT_A_REAL
-
MORE_INPUT
-
RIGHT_OPERAND_PROBLEM
-
NOT_EXPECTED_TOKEN
-
OOD
-
NON_TERMINATING_DOUBLE_QUOTED_STRING
-
NON_TERMINATING_QUOTED_STRING
-
MISSING_LEADING_ZERO_FOR_NUMBER
-
REAL_CANNOT_BE_LONG
-
UNEXPECTED_DATA_AFTER_DOT
-
MISSING_CONSTRUCTOR_ARGS
-
RUN_OUT_OF_ARGUMENTS
-
UNABLE_TO_GROW_COLLECTION
-
UNABLE_TO_GROW_COLLECTION_UNKNOWN_ELEMENT_TYPE
-
UNABLE_TO_CREATE_LIST_FOR_INDEXING
-
UNABLE_TO_CREATE_MAP_FOR_INDEXING
-
UNABLE_TO_DYNAMICALLY_CREATE_OBJECT
-
NO_BEAN_RESOLVER_REGISTERED
-
EXCEPTION_DURING_BEAN_RESOLUTION
-
INVALID_BEAN_REFERENCE
-
TYPE_NAME_EXPECTED_FOR_ARRAY_CONSTRUCTION
-
INCORRECT_ELEMENT_TYPE_FOR_ARRAY
-
MULTIDIM_ARRAY_INITIALIZER_NOT_SUPPORTED
-
MISSING_ARRAY_DIMENSION
-
INITIALIZER_LENGTH_INCORRECT
-
UNEXPECTED_ESCAPE_CHAR
-
OPERAND_NOT_INCREMENTABLE
-
OPERAND_NOT_DECREMENTABLE
-
NOT_ASSIGNABLE
-
MISSING_CHARACTER
-
LEFT_OPERAND_PROBLEM
-
MISSING_SELECTION_EXPRESSION
-
EXCEPTION_RUNNING_COMPILED_EXPRESSION
- Since:
- 4.1
-
FLAWED_PATTERN
- Since:
- 4.3.17
-
EXCEPTION_COMPILING_EXPRESSION
- Since:
- 5.3.17
-
MAX_ARRAY_ELEMENTS_THRESHOLD_EXCEEDED
- Since:
- 5.3.17
-
MAX_REPEATED_TEXT_SIZE_EXCEEDED
- Since:
- 5.2.23
-
MAX_REGEX_LENGTH_EXCEEDED
- Since:
- 5.2.23
-
MAX_CONCATENATED_STRING_LENGTH_EXCEEDED
- Since:
- 5.2.24
-
MAX_EXPRESSION_LENGTH_EXCEEDED
- Since:
- 5.2.24
-
VARIABLE_ASSIGNMENT_NOT_SUPPORTED
- Since:
- 5.2.24
-
NEGATIVE_REPEATED_TEXT_COUNT
- Since:
- 6.0.13
-
UNSUPPORTED_CHARACTER
- Since:
- 6.1.15
-
EXCEPTION_DURING_INDEX_READ
- Since:
- 6.2
-
EXCEPTION_DURING_INDEX_WRITE
- Since:
- 6.2
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
formatMessage
Produce a complete message including the prefix and with the inserts applied to the message.- Parameters:
inserts
- the inserts to put into the formatted message- Returns:
- a formatted message
- Since:
- 4.3.5
-