Package com.github.rjeschke.txtmark
Enum HTMLElement
- java.lang.Object
-
- java.lang.Enum<HTMLElement>
-
- com.github.rjeschke.txtmark.HTMLElement
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<HTMLElement>
enum HTMLElement extends java.lang.Enum<HTMLElement>
Enum of HTML tags.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description aabbracronymaddressappletareabbasebasefontbdobigblockquotebodybrbuttoncaptioncitecodecolcolgroupdddeldfndivdldtemfieldsetfontformframeframeseth1h2h3h4h5h6headhrhtmliiframeimginputinskbdlabellegendlilinkmapmetaNONEnoscriptobjectoloptgroupoptionpparampreqssampscriptselectsmallspanstrikestrongstylesubsuptabletbodytdtextareatfootththeadtitletrttuulvar
-
Constructor Summary
Constructors Modifier Constructor Description privateHTMLElement()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HTMLElementvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static HTMLElement[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final HTMLElement NONE
-
a
public static final HTMLElement a
-
abbr
public static final HTMLElement abbr
-
acronym
public static final HTMLElement acronym
-
address
public static final HTMLElement address
-
applet
public static final HTMLElement applet
-
area
public static final HTMLElement area
-
b
public static final HTMLElement b
-
base
public static final HTMLElement base
-
basefont
public static final HTMLElement basefont
-
bdo
public static final HTMLElement bdo
-
big
public static final HTMLElement big
-
blockquote
public static final HTMLElement blockquote
-
body
public static final HTMLElement body
-
br
public static final HTMLElement br
-
button
public static final HTMLElement button
-
caption
public static final HTMLElement caption
-
cite
public static final HTMLElement cite
-
code
public static final HTMLElement code
-
col
public static final HTMLElement col
-
colgroup
public static final HTMLElement colgroup
-
dd
public static final HTMLElement dd
-
del
public static final HTMLElement del
-
dfn
public static final HTMLElement dfn
-
div
public static final HTMLElement div
-
dl
public static final HTMLElement dl
-
dt
public static final HTMLElement dt
-
em
public static final HTMLElement em
-
fieldset
public static final HTMLElement fieldset
-
font
public static final HTMLElement font
-
form
public static final HTMLElement form
-
frame
public static final HTMLElement frame
-
frameset
public static final HTMLElement frameset
-
h1
public static final HTMLElement h1
-
h2
public static final HTMLElement h2
-
h3
public static final HTMLElement h3
-
h4
public static final HTMLElement h4
-
h5
public static final HTMLElement h5
-
h6
public static final HTMLElement h6
-
head
public static final HTMLElement head
-
hr
public static final HTMLElement hr
-
html
public static final HTMLElement html
-
i
public static final HTMLElement i
-
iframe
public static final HTMLElement iframe
-
img
public static final HTMLElement img
-
input
public static final HTMLElement input
-
ins
public static final HTMLElement ins
-
kbd
public static final HTMLElement kbd
-
label
public static final HTMLElement label
-
legend
public static final HTMLElement legend
-
li
public static final HTMLElement li
-
link
public static final HTMLElement link
-
map
public static final HTMLElement map
-
meta
public static final HTMLElement meta
-
noscript
public static final HTMLElement noscript
-
object
public static final HTMLElement object
-
ol
public static final HTMLElement ol
-
optgroup
public static final HTMLElement optgroup
-
option
public static final HTMLElement option
-
p
public static final HTMLElement p
-
param
public static final HTMLElement param
-
pre
public static final HTMLElement pre
-
q
public static final HTMLElement q
-
s
public static final HTMLElement s
-
samp
public static final HTMLElement samp
-
script
public static final HTMLElement script
-
select
public static final HTMLElement select
-
small
public static final HTMLElement small
-
span
public static final HTMLElement span
-
strike
public static final HTMLElement strike
-
strong
public static final HTMLElement strong
-
style
public static final HTMLElement style
-
sub
public static final HTMLElement sub
-
sup
public static final HTMLElement sup
-
table
public static final HTMLElement table
-
tbody
public static final HTMLElement tbody
-
td
public static final HTMLElement td
-
textarea
public static final HTMLElement textarea
-
tfoot
public static final HTMLElement tfoot
-
th
public static final HTMLElement th
-
thead
public static final HTMLElement thead
-
title
public static final HTMLElement title
-
tr
public static final HTMLElement tr
-
tt
public static final HTMLElement tt
-
u
public static final HTMLElement u
-
ul
public static final HTMLElement ul
-
var
public static final HTMLElement var
-
-
Method Detail
-
values
public static HTMLElement[] 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 (HTMLElement c : HTMLElement.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HTMLElement 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
-
-