Enum HtmlTag
- java.lang.Object
-
- java.lang.Enum<HtmlTag>
-
- gw.gosudoc.com.sun.tools.doclets.formats.html.markup.HtmlTag
-
- All Implemented Interfaces:
Serializable
,Comparable<HtmlTag>
@Deprecated public enum HtmlTag extends Enum<HtmlTag>
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.
- Author:
- Bhavesh Patel
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HtmlTag.BlockType
Deprecated.Enum representing the type of HTML element.static class
HtmlTag.EndTag
Deprecated.Enum representing HTML end tag requirement.
-
Enum Constant Summary
Enum Constants Enum Constant Description 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.LINK
Deprecated.LISTING
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 Summary
Fields Modifier and Type Field Description HtmlTag.BlockType
blockType
Deprecated.HtmlTag.EndTag
endTag
Deprecated.HtmlVersion
htmlVersion
Deprecated.String
value
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
allowTag(HtmlVersion htmlVer)
Deprecated.Returns true if the tag is allowed in the output HTML version of this javadoc run.boolean
endTagRequired()
Deprecated.Returns true if the end tag is required.String
toString()
Deprecated.static HtmlTag
valueOf(String name)
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 Detail
-
A
public static final HtmlTag A
Deprecated.
-
BLOCKQUOTE
public static final HtmlTag BLOCKQUOTE
Deprecated.
-
BODY
public static final HtmlTag BODY
Deprecated.
-
BR
public static final HtmlTag BR
Deprecated.
-
CAPTION
public static final HtmlTag CAPTION
Deprecated.
-
CENTER
public static final HtmlTag CENTER
Deprecated.
-
CODE
public static final HtmlTag CODE
Deprecated.
-
DD
public static final HtmlTag DD
Deprecated.
-
DIR
public static final HtmlTag DIR
Deprecated.
-
DIV
public static final HtmlTag DIV
Deprecated.
-
DL
public static final HtmlTag DL
Deprecated.
-
DT
public static final HtmlTag DT
Deprecated.
-
EM
public static final HtmlTag EM
Deprecated.
-
FONT
public static final HtmlTag FONT
Deprecated.
-
FOOTER
public static final HtmlTag FOOTER
Deprecated.
-
H1
public static final HtmlTag H1
Deprecated.
-
H2
public static final HtmlTag H2
Deprecated.
-
H3
public static final HtmlTag H3
Deprecated.
-
H4
public static final HtmlTag H4
Deprecated.
-
H5
public static final HtmlTag H5
Deprecated.
-
H6
public static final HtmlTag H6
Deprecated.
-
HEAD
public static final HtmlTag HEAD
Deprecated.
-
HEADER
public static final HtmlTag HEADER
Deprecated.
-
HR
public static final HtmlTag HR
Deprecated.
-
HTML
public static final HtmlTag HTML
Deprecated.
-
I
public static final HtmlTag I
Deprecated.
-
IFRAME
public static final HtmlTag IFRAME
Deprecated.
-
IMG
public static final HtmlTag IMG
Deprecated.
-
INPUT
public static final HtmlTag INPUT
Deprecated.
-
LI
public static final HtmlTag LI
Deprecated.
-
LISTING
public static final HtmlTag LISTING
Deprecated.
-
LINK
public static final HtmlTag LINK
Deprecated.
-
MAIN
public static final HtmlTag MAIN
Deprecated.
-
MENU
public static final HtmlTag MENU
Deprecated.
-
META
public static final HtmlTag META
Deprecated.
-
NAV
public static final HtmlTag NAV
Deprecated.
-
NOSCRIPT
public static final HtmlTag NOSCRIPT
Deprecated.
-
OL
public static final HtmlTag OL
Deprecated.
-
P
public static final HtmlTag P
Deprecated.
-
PRE
public static final HtmlTag PRE
Deprecated.
-
SCRIPT
public static final HtmlTag SCRIPT
Deprecated.
-
SECTION
public static final HtmlTag SECTION
Deprecated.
-
SMALL
public static final HtmlTag SMALL
Deprecated.
-
SPAN
public static final HtmlTag SPAN
Deprecated.
-
STRONG
public static final HtmlTag STRONG
Deprecated.
-
SUB
public static final HtmlTag SUB
Deprecated.
-
TABLE
public static final HtmlTag TABLE
Deprecated.
-
TBODY
public static final HtmlTag TBODY
Deprecated.
-
TD
public static final HtmlTag TD
Deprecated.
-
TH
public static final HtmlTag TH
Deprecated.
-
TITLE
public static final HtmlTag TITLE
Deprecated.
-
TR
public static final HtmlTag TR
Deprecated.
-
TT
public static final HtmlTag TT
Deprecated.
-
UL
public static final HtmlTag UL
Deprecated.
-
-
Field Detail
-
blockType
public final HtmlTag.BlockType blockType
Deprecated.
-
endTag
public final HtmlTag.EndTag endTag
Deprecated.
-
value
public final String value
Deprecated.
-
htmlVersion
public final HtmlVersion htmlVersion
Deprecated.
-
-
Method Detail
-
values
public static HtmlTag[] values()
Deprecated.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 (HtmlTag c : HtmlTag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HtmlTag valueOf(String name)
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
public boolean allowTag(HtmlVersion htmlVer)
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
-
-