public enum XhtmlCharacterType extends Enum<XhtmlCharacterType>
Enum Constant and Description |
---|
CHARACTER |
ESCAPED |
NEW_LINE |
SPACE |
SPECIAL_SYMBOL |
Modifier and Type | Method and Description |
---|---|
static XhtmlCharacterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XhtmlCharacterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XhtmlCharacterType SPECIAL_SYMBOL
public static final XhtmlCharacterType CHARACTER
public static final XhtmlCharacterType SPACE
public static final XhtmlCharacterType NEW_LINE
public static final XhtmlCharacterType ESCAPED
public static XhtmlCharacterType[] values()
for (XhtmlCharacterType c : XhtmlCharacterType.values()) System.out.println(c);
public static XhtmlCharacterType 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 © 2004–2021 XWiki. All rights reserved.