Enum HtmlAttr
- java.lang.Object
-
- java.lang.Enum<HtmlAttr>
-
- gw.gosudoc.com.sun.tools.doclets.formats.html.markup.HtmlAttr
-
- All Implemented Interfaces:
Serializable
,Comparable<HtmlAttr>
@Deprecated public enum HtmlAttr extends Enum<HtmlAttr>
Deprecated.Enum representing HTML tag attributes.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
HtmlAttr.Role
Deprecated.
-
Enum Constant Summary
Enum Constants Enum Constant Description ALT
Deprecated.CLASS
Deprecated.CLEAR
Deprecated.COLS
Deprecated.CONTENT
Deprecated.DISABLED
Deprecated.HREF
Deprecated.HTTP_EQUIV
Deprecated.ID
Deprecated.LANG
Deprecated.NAME
Deprecated.ONLOAD
Deprecated.REL
Deprecated.ROLE
Deprecated.ROWS
Deprecated.SCOPE
Deprecated.SCROLLING
Deprecated.SRC
Deprecated.SUMMARY
Deprecated.TARGET
Deprecated.TITLE
Deprecated.TYPE
Deprecated.VALUE
Deprecated.WIDTH
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
toString()
Deprecated.static HtmlAttr
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static HtmlAttr[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALT
public static final HtmlAttr ALT
Deprecated.
-
CLASS
public static final HtmlAttr CLASS
Deprecated.
-
CLEAR
public static final HtmlAttr CLEAR
Deprecated.
-
COLS
public static final HtmlAttr COLS
Deprecated.
-
CONTENT
public static final HtmlAttr CONTENT
Deprecated.
-
DISABLED
public static final HtmlAttr DISABLED
Deprecated.
-
HREF
public static final HtmlAttr HREF
Deprecated.
-
HTTP_EQUIV
public static final HtmlAttr HTTP_EQUIV
Deprecated.
-
ID
public static final HtmlAttr ID
Deprecated.
-
LANG
public static final HtmlAttr LANG
Deprecated.
-
NAME
public static final HtmlAttr NAME
Deprecated.
-
ONLOAD
public static final HtmlAttr ONLOAD
Deprecated.
-
REL
public static final HtmlAttr REL
Deprecated.
-
ROLE
public static final HtmlAttr ROLE
Deprecated.
-
ROWS
public static final HtmlAttr ROWS
Deprecated.
-
SCOPE
public static final HtmlAttr SCOPE
Deprecated.
-
SCROLLING
public static final HtmlAttr SCROLLING
Deprecated.
-
SRC
public static final HtmlAttr SRC
Deprecated.
-
SUMMARY
public static final HtmlAttr SUMMARY
Deprecated.
-
TARGET
public static final HtmlAttr TARGET
Deprecated.
-
TITLE
public static final HtmlAttr TITLE
Deprecated.
-
TYPE
public static final HtmlAttr TYPE
Deprecated.
-
VALUE
public static final HtmlAttr VALUE
Deprecated.
-
WIDTH
public static final HtmlAttr WIDTH
Deprecated.
-
-
Method Detail
-
values
public static HtmlAttr[] 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 (HtmlAttr c : HtmlAttr.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HtmlAttr 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
-
-