public enum ValidationMessageFormatType extends Enum<ValidationMessageFormatType>
| Enum Constant and Description |
|---|
HTML |
JSON |
PLAIN_TEXT |
XML |
| Modifier and Type | Method and Description |
|---|---|
static ValidationMessageFormatType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidationMessageFormatType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationMessageFormatType PLAIN_TEXT
public static final ValidationMessageFormatType HTML
public static final ValidationMessageFormatType JSON
public static final ValidationMessageFormatType XML
public static ValidationMessageFormatType[] values()
for (ValidationMessageFormatType c : ValidationMessageFormatType.values()) System.out.println(c);
public static ValidationMessageFormatType 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 nullCopyright © 2017. All rights reserved.