org.jnetpcap.protocol.application
Enum Html.Tag.Param
java.lang.Object
java.lang.Enum<Html.Tag.Param>
org.jnetpcap.protocol.application.Html.Tag.Param
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Html.Tag.Param>
- Enclosing class:
- Html.Tag
public static enum Html.Tag.Param
- extends java.lang.Enum<Html.Tag.Param>
Table of tag parameters
- Author:
- Mark Bednarczyk, Sly Technologies, Inc.
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
ALT
public static final Html.Tag.Param ALT
CLASS
public static final Html.Tag.Param CLASS
HEIGHT
public static final Html.Tag.Param HEIGHT
HREF
public static final Html.Tag.Param HREF
ID
public static final Html.Tag.Param ID
SRC
public static final Html.Tag.Param SRC
TITLE
public static final Html.Tag.Param TITLE
TYPE
public static final Html.Tag.Param TYPE
UNKNOWN
public static final Html.Tag.Param UNKNOWN
WIDTH
public static final Html.Tag.Param WIDTH
values
public static final Html.Tag.Param[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(Html.Tag.Param c : Html.Tag.Param.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static Html.Tag.Param 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 name
parseStringPrefix
public static Html.Tag.Param parseStringPrefix(java.lang.String name)