Enum HtmlTag
- All Implemented Interfaces:
Serializable
,Comparable<HtmlTag>
,java.lang.constant.Constable
Deprecated.
Enum representing HTML tags.
This is NOT part of any supported API. If you write code that depends on this, you do so at your own risk. This code and its internal interfaces are subject to change or deletion without notice.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
Deprecated.Enum representing the type of HTML element.static enum
Deprecated.Enum representing HTML end tag requirement.Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDeprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated. -
Field Summary
FieldsModifier and TypeFieldDescriptionfinal HtmlTag.BlockType
Deprecated.final HtmlTag.EndTag
Deprecated.final HtmlVersion
Deprecated.final String
Deprecated. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
HtmlTag()
Deprecated.private
HtmlTag
(HtmlTag.BlockType blockType, HtmlTag.EndTag endTag) Deprecated.private
HtmlTag
(HtmlVersion htmlVersion) Deprecated.private
HtmlTag
(HtmlVersion htmlVersion, HtmlTag.BlockType blockType, HtmlTag.EndTag endTag) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionboolean
allowTag
(HtmlVersion htmlVer) Deprecated.Returns true if the tag is allowed in the output HTML version of this javadoc run.boolean
Deprecated.Returns true if the end tag is required.toString()
Deprecated.static HtmlTag
Deprecated.Returns the enum constant of this type with the specified name.static HtmlTag[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
A
Deprecated. -
BLOCKQUOTE
Deprecated. -
BODY
Deprecated. -
BR
Deprecated. -
CAPTION
Deprecated. -
CENTER
Deprecated. -
CODE
Deprecated. -
DD
Deprecated. -
DIR
Deprecated. -
DIV
Deprecated. -
DL
Deprecated. -
DT
Deprecated. -
EM
Deprecated. -
FONT
Deprecated. -
FOOTER
Deprecated. -
H1
Deprecated. -
H2
Deprecated. -
H3
Deprecated. -
H4
Deprecated. -
H5
Deprecated. -
H6
Deprecated. -
HEAD
Deprecated. -
HEADER
Deprecated. -
HR
Deprecated. -
HTML
Deprecated. -
I
Deprecated. -
IFRAME
Deprecated. -
IMG
Deprecated. -
INPUT
Deprecated. -
LI
Deprecated. -
LISTING
Deprecated. -
LINK
Deprecated. -
MAIN
Deprecated. -
MENU
Deprecated. -
META
Deprecated. -
NAV
Deprecated. -
NOSCRIPT
Deprecated. -
OL
Deprecated. -
P
Deprecated. -
PRE
Deprecated. -
SCRIPT
Deprecated. -
SECTION
Deprecated. -
SMALL
Deprecated. -
SPAN
Deprecated. -
STRONG
Deprecated. -
SUB
Deprecated. -
TABLE
Deprecated. -
TBODY
Deprecated. -
TD
Deprecated. -
TH
Deprecated. -
TITLE
Deprecated. -
TR
Deprecated. -
TT
Deprecated. -
UL
Deprecated.
-
-
Field Details
-
blockType
Deprecated. -
endTag
Deprecated. -
value
Deprecated. -
htmlVersion
Deprecated.
-
-
Constructor Details
-
HtmlTag
private HtmlTag()Deprecated. -
HtmlTag
Deprecated. -
HtmlTag
Deprecated. -
HtmlTag
Deprecated.
-
-
Method Details
-
values
Deprecated.Returns 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
-
valueOf
Deprecated.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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
endTagRequired
public boolean endTagRequired()Deprecated.Returns true if the end tag is required. This is specific to the standard doclet and does not exactly resemble the W3C specifications.- Returns:
- true if end tag needs to be displayed else return false
-
allowTag
Deprecated.Returns true if the tag is allowed in the output HTML version of this javadoc run.- Parameters:
htmlVer
- the output HTML version for this javadoc run- Returns:
- true if the tag is allowed
-
toString
Deprecated.
-