public enum ValidationHtmlEscapeType extends Enum<ValidationHtmlEscapeType>
| Enum Constant and Description |
|---|
ESCAPE |
NO_ESCAPE |
PRE
Convert newlines to <br /> and
maybe some other small tweaks.
|
| Modifier and Type | Method and Description |
|---|---|
static ValidationHtmlEscapeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidationHtmlEscapeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationHtmlEscapeType ESCAPE
public static final ValidationHtmlEscapeType NO_ESCAPE
public static final ValidationHtmlEscapeType PRE
public static ValidationHtmlEscapeType[] values()
for (ValidationHtmlEscapeType c : ValidationHtmlEscapeType.values()) System.out.println(c);
public static ValidationHtmlEscapeType 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 © 2019. All rights reserved.