Package org.springframework.validation
Enum Class DefaultMessageCodesResolver.Format
java.lang.Object
java.lang.Enum<DefaultMessageCodesResolver.Format>
org.springframework.validation.DefaultMessageCodesResolver.Format
- All Implemented Interfaces:
Serializable
,Comparable<DefaultMessageCodesResolver.Format>
,Constable
,MessageCodeFormatter
- Enclosing class:
- DefaultMessageCodesResolver
public static enum DefaultMessageCodesResolver.Format
extends Enum<DefaultMessageCodesResolver.Format>
implements MessageCodeFormatter
Common message code formats.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionPostfix the error code at the end of the generated message code.Prefix the error code at the beginning of the generated message code. -
Method Summary
Modifier and TypeMethodDescriptionstatic String
toDelimitedString
(String... elements) Concatenate the given elements, delimiting each withDefaultMessageCodesResolver.CODE_SEPARATOR
, skipping zero-length or null elements altogether.Returns the enum constant of this class with the specified name.static DefaultMessageCodesResolver.Format[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from interface org.springframework.validation.MessageCodeFormatter
format
-
Enum Constant Details
-
PREFIX_ERROR_CODE
Prefix the error code at the beginning of the generated message code. e.g.:errorCode + "." + object name + "." + field
-
POSTFIX_ERROR_CODE
Postfix the error code at the end of the generated message code. e.g.:object name + "." + field + "." + errorCode
-
-
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
-
toDelimitedString
Concatenate the given elements, delimiting each withDefaultMessageCodesResolver.CODE_SEPARATOR
, skipping zero-length or null elements altogether.
-