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.
See Also:
  • Enum Constant Details

    • PREFIX_ERROR_CODE

      public static final DefaultMessageCodesResolver.Format PREFIX_ERROR_CODE
      Prefix the error code at the beginning of the generated message code. e.g.: errorCode + "." + object name + "." + field
    • POSTFIX_ERROR_CODE

      public static final DefaultMessageCodesResolver.Format POSTFIX_ERROR_CODE
      Postfix the error code at the end of the generated message code. e.g.: object name + "." + field + "." + errorCode
  • Method Details

    • values

      public static DefaultMessageCodesResolver.Format[] 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

      public static DefaultMessageCodesResolver.Format valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • toDelimitedString

      public static String toDelimitedString(String... elements)
      Concatenate the given elements, delimiting each with DefaultMessageCodesResolver.CODE_SEPARATOR, skipping zero-length or null elements altogether.