public static enum DefaultMessageCodesResolver.Format extends Enum<DefaultMessageCodesResolver.Format> implements MessageCodeFormatter
| Enum Constant and Description | 
|---|
POSTFIX_ERROR_CODE
Postfix the error code at the end of the generated message code. 
 | 
PREFIX_ERROR_CODE
Prefix the error code at the beginning of the generated message code. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static String | 
toDelimitedString(String... elements)
Concatenate the given elements, delimiting each with
  
DefaultMessageCodesResolver.CODE_SEPARATOR, skipping zero-length or
 null elements altogether. | 
static DefaultMessageCodesResolver.Format | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static DefaultMessageCodesResolver.Format[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfformatpublic static final DefaultMessageCodesResolver.Format PREFIX_ERROR_CODE
errorCode + "." + object name + "." + fieldpublic static final DefaultMessageCodesResolver.Format POSTFIX_ERROR_CODE
object name + "." + field + "." + errorCodepublic static DefaultMessageCodesResolver.Format[] values()
for (DefaultMessageCodesResolver.Format c : DefaultMessageCodesResolver.Format.values()) System.out.println(c);
public static DefaultMessageCodesResolver.Format valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static String toDelimitedString(String... elements)
DefaultMessageCodesResolver.CODE_SEPARATOR, skipping zero-length or
 null elements altogether.