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 SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum 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 SummaryModifier and TypeMethodDescriptionstatic StringtoDelimitedString(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.Enumclone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfMethods inherited from interface org.springframework.validation.MessageCodeFormatterformat
- 
Enum Constant Details- 
PREFIX_ERROR_CODEPrefix the error code at the beginning of the generated message code. e.g.:errorCode + "." + object name + "." + field
- 
POSTFIX_ERROR_CODEPostfix the error code at the end of the generated message code. e.g.:object name + "." + field + "." + errorCode
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
- 
toDelimitedStringConcatenate the given elements, delimiting each withDefaultMessageCodesResolver.CODE_SEPARATOR, skipping zero-length or null elements altogether.
 
-