public enum HTMLElementType extends Enum<HTMLElementType>
Enum Constant and Description |
---|
ESCAPABLE_RAW_TEXT |
FOREIGN |
NORMAL |
RAW_TEXT |
VOID |
Modifier and Type | Method and Description |
---|---|
boolean |
isVoid() |
static HTMLElementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HTMLElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HTMLElementType VOID
public static final HTMLElementType RAW_TEXT
public static final HTMLElementType ESCAPABLE_RAW_TEXT
public static final HTMLElementType FOREIGN
public static final HTMLElementType NORMAL
public static HTMLElementType[] values()
for (HTMLElementType c : HTMLElementType.values()) System.out.println(c);
public static HTMLElementType 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 nullpublic boolean isVoid()
Copyright © 2017 The THYMELEAF team. All rights reserved.