public static enum DefaultMessageCodesResolver.Format extends java.lang.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 java.lang.String |
toDelimitedString(java.lang.String... elements)
Concatenate the given elements, delimiting each with
DefaultMessageCodesResolver.CODE_SEPARATOR , skipping zero-length or
null elements altogether. |
static DefaultMessageCodesResolver.Format |
valueOf(java.lang.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, valueOf
format
public static final DefaultMessageCodesResolver.Format PREFIX_ERROR_CODE
errorCode + "." + object name + "." + field
public static final DefaultMessageCodesResolver.Format POSTFIX_ERROR_CODE
object name + "." + field + "." + errorCode
public static DefaultMessageCodesResolver.Format[] values()
for (DefaultMessageCodesResolver.Format c : DefaultMessageCodesResolver.Format.values()) System.out.println(c);
public static DefaultMessageCodesResolver.Format valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static java.lang.String toDelimitedString(java.lang.String... elements)
DefaultMessageCodesResolver.CODE_SEPARATOR
, skipping zero-length or
null elements altogether.