Enum HtmlElements
- All Implemented Interfaces:
- Serializable,- Comparable<HtmlElements>,- java.lang.constant.Constable
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionDeprecated.
- 
Method SummaryModifier and TypeMethodDescriptiongetValue()booleanisInline()static booleanbooleanisVoid()A void HTML elements is an element whose content model never allows it to have contents under any circumstances.static booleanstatic HtmlElementsReturns the enum constant of this type with the specified name.static HtmlElements[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
A
- 
ABBR
- 
ADDRESS
- 
AREA
- 
ARTICLE
- 
ASIDE
- 
AUDIO
- 
B
- 
BASE
- 
BDI
- 
BDO
- 
BLOCKQUOTE
- 
BODY
- 
BR
- 
BUTTON
- 
CANVAS
- 
CAPTION
- 
CITE
- 
CODE
- 
COL
- 
COLGROUP
- 
COMMANDDeprecated.
- 
DATALIST
- 
DD
- 
DEL
- 
DETAILS
- 
DFN
- 
DIV
- 
DL
- 
DT
- 
EM
- 
EMBED
- 
FIELDSET
- 
FIGCAPTION
- 
FIGURE
- 
FOOTER
- 
FORM
- 
H1
- 
H2
- 
H3
- 
H4
- 
H5
- 
H6
- 
HEAD
- 
HEADER
- 
HGROUP
- 
HR
- 
HTML
- 
I
- 
IFRAME
- 
IMG
- 
INPUT
- 
INS
- 
KBD
- 
KEYGEN
- 
LABEL
- 
LEGEND
- 
LI
- 
LINK
- 
MAP
- 
MARK
- 
MENU
- 
META
- 
METER
- 
NAV
- 
NOSCRIPT
- 
OBJECT
- 
OL
- 
OPTGROUP
- 
OPTION
- 
P
- 
PARAM
- 
PRE
- 
PROGRESS
- 
Q
- 
RP
- 
RT
- 
RUBY
- 
S
- 
SAMP
- 
SCRIPT
- 
SECTION
- 
SELECT
- 
SMALL
- 
SOURCE
- 
SPAN
- 
STRONG
- 
STYLE
- 
SUB
- 
SUMMARY
- 
SUP
- 
TABLE
- 
TBODY
- 
TD
- 
TEXTAREA
- 
TFOOT
- 
TH
- 
THEAD
- 
TIME
- 
TITLE
- 
TR
- 
TRACK
- 
U
- 
UL
- 
VAR
- 
VIDEO
- 
WBR
- 
TOBAGO_BADGE
- 
TOBAGO_BAR
- 
TOBAGO_BEHAVIOR
- 
TOBAGO_BUTTONS
- 
TOBAGO_BOX
- 
TOBAGO_CONFIG
- 
TOBAGO_DATE
- 
TOBAGO_DROPDOWN
- 
TOBAGO_FILE
- 
TOBAGO_FLEX_LAYOUT
- 
TOBAGO_FLOW_LAYOUT
- 
TOBAGO_FOCUS
- 
TOBAGO_FOOTER
- 
TOBAGO_FORM
- 
TOBAGO_GRID_LAYOUT
- 
TOBAGO_HEADER
- 
TOBAGO_IMAGE
- 
TOBAGO_IN
- 
TOBAGO_LINKS
- 
TOBAGO_MESSAGES
- 
TOBAGO_OUT
- 
TOBAGO_PAGE
- 
TOBAGO_PANEL
- 
TOBAGO_POPOVER
- 
TOBAGO_POPUP
- 
TOBAGO_PROGRESS
- 
TOBAGO_RANGE
- 
TOBAGO_RELOAD
- 
TOBAGO_SCROLL
- 
TOBAGO_SECTION
- 
TOBAGO_SEGMENT_LAYOUT
- 
TOBAGO_SELECT_BOOLEAN_CHECKBOX
- 
TOBAGO_SELECT_BOOLEAN_TOGGLE
- 
TOBAGO_SELECT_MANY_CHECKBOX
- 
TOBAGO_SELECT_MANY_LIST
- 
TOBAGO_SELECT_MANY_LISTBOX
- 
TOBAGO_SELECT_MANY_SHUTTLE
- 
TOBAGO_SELECT_ONE_CHOICE
- 
TOBAGO_SELECT_ONE_LISTBOX
- 
TOBAGO_SELECT_ONE_RADIO
- 
TOBAGO_SEPARATOR
- 
TOBAGO_SHEET
- 
TOBAGO_SPLIT_LAYOUT
- 
TOBAGO_STARS
- 
TOBAGO_SUGGEST
- 
TOBAGO_TAB
- 
TOBAGO_TAB_GROUP
- 
TOBAGO_TEXTAREA
- 
TOBAGO_TREE
- 
TOBAGO_TREE_LISTBOX
- 
TOBAGO_TREE_NODE
- 
TOBAGO_TREE_SELECT
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns 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:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
getValue
- 
isVoidpublic boolean isVoid()A void HTML elements is an element whose content model never allows it to have contents under any circumstances. See http://www.w3.org/TR/html-markup/syntax.html#void-element
- 
isInlinepublic boolean isInline()
- 
isVoid
- 
isInline
 
-