public static enum Entities.EscapeMode extends Enum<Entities .EscapeMode >
| Enum Constant and Description |
|---|
base
Default HTML output entities.
|
extended
Complete HTML entities.
|
xhtml
Restricted entities suitable for XHTML output: lt, gt, amp, and quot only.
|
| Modifier and Type | Method and Description |
|---|---|
Map |
getMap()
|
static Entities |
valueOf(String
Returns the enum constant of this type with the specified name.
|
static Entities |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final Entities.EscapeMode xhtml
public static final Entities.EscapeMode base
public static final Entities.EscapeMode extended
public static Entities.EscapeMode [] values()
for (Entities.EscapeMode c : Entities.EscapeMode.values()) System.out.println(c);
public static Entities.EscapeMode valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null