Package eu.webtoolkit.jwt
Enum DomElementType
- java.lang.Object
-
- java.lang.Enum<DomElementType>
-
- eu.webtoolkit.jwt.DomElementType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DomElementType>
public enum DomElementType extends java.lang.Enum<DomElementType>
Enumeration for a DOM element type.For internal use only.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AAREAAUDIOBBRBUTTONCANVASCOLCOLGROUPDATALISTDIVEMFIELDSETFORMH1H2H3H4H5H6HRIIFRAMEIMGINPUTLABELLEGENDLIMAPOBJECTOLOPTGROUPOPTIONOTHERPPARAMSCRIPTSELECTSOURCESPANSTRONGSTYLETABLETBODYTDTEXTAREATFOOTTHTHEADTRULUNKNOWNVIDEO
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()Returns the numerical representation of this enum.static DomElementTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DomElementType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
A
public static final DomElementType A
-
BR
public static final DomElementType BR
-
BUTTON
public static final DomElementType BUTTON
-
COL
public static final DomElementType COL
-
COLGROUP
public static final DomElementType COLGROUP
-
DIV
public static final DomElementType DIV
-
FIELDSET
public static final DomElementType FIELDSET
-
FORM
public static final DomElementType FORM
-
H1
public static final DomElementType H1
-
H2
public static final DomElementType H2
-
H3
public static final DomElementType H3
-
H4
public static final DomElementType H4
-
H5
public static final DomElementType H5
-
H6
public static final DomElementType H6
-
IFRAME
public static final DomElementType IFRAME
-
IMG
public static final DomElementType IMG
-
INPUT
public static final DomElementType INPUT
-
LABEL
public static final DomElementType LABEL
-
LEGEND
public static final DomElementType LEGEND
-
LI
public static final DomElementType LI
-
OL
public static final DomElementType OL
-
OPTION
public static final DomElementType OPTION
-
UL
public static final DomElementType UL
-
SCRIPT
public static final DomElementType SCRIPT
-
SELECT
public static final DomElementType SELECT
-
SPAN
public static final DomElementType SPAN
-
TABLE
public static final DomElementType TABLE
-
TBODY
public static final DomElementType TBODY
-
THEAD
public static final DomElementType THEAD
-
TFOOT
public static final DomElementType TFOOT
-
TH
public static final DomElementType TH
-
TD
public static final DomElementType TD
-
TEXTAREA
public static final DomElementType TEXTAREA
-
OPTGROUP
public static final DomElementType OPTGROUP
-
TR
public static final DomElementType TR
-
P
public static final DomElementType P
-
CANVAS
public static final DomElementType CANVAS
-
MAP
public static final DomElementType MAP
-
AREA
public static final DomElementType AREA
-
STYLE
public static final DomElementType STYLE
-
OBJECT
public static final DomElementType OBJECT
-
PARAM
public static final DomElementType PARAM
-
AUDIO
public static final DomElementType AUDIO
-
VIDEO
public static final DomElementType VIDEO
-
SOURCE
public static final DomElementType SOURCE
-
B
public static final DomElementType B
-
STRONG
public static final DomElementType STRONG
-
EM
public static final DomElementType EM
-
I
public static final DomElementType I
-
HR
public static final DomElementType HR
-
DATALIST
public static final DomElementType DATALIST
-
UNKNOWN
public static final DomElementType UNKNOWN
-
OTHER
public static final DomElementType OTHER
-
-
Method Detail
-
values
public static DomElementType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DomElementType c : DomElementType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DomElementType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public int getValue()
Returns the numerical representation of this enum.
-
-