Package org.apache.wicket.markup.parser
Enum IXmlPullParser.HttpTagType
- java.lang.Object
-
- java.lang.Enum<IXmlPullParser.HttpTagType>
-
- org.apache.wicket.markup.parser.IXmlPullParser.HttpTagType
-
- All Implemented Interfaces:
Serializable
,Comparable<IXmlPullParser.HttpTagType>
- Enclosing interface:
- IXmlPullParser
public static enum IXmlPullParser.HttpTagType extends Enum<IXmlPullParser.HttpTagType>
The last element found
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BODY
Tag body in between two tagsCDATA
<![CDATA[ ..COMMENT
<!-- ...CONDITIONAL_COMMENT
<!--[if ] ...CONDITIONAL_COMMENT_ENDIF
<![endif]-->DOCTYPE
<!DOCTYPE ...>NOT_INITIALIZED
next() must be called at least once for the Type to be validPROCESSING_INSTRUCTION
<?...>SPECIAL_TAG
all other tags which look like <!..TAG
<name ...>
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IXmlPullParser.HttpTagType
valueOf(String name)
Returns the enum constant of this type with the specified name.static IXmlPullParser.HttpTagType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_INITIALIZED
public static final IXmlPullParser.HttpTagType NOT_INITIALIZED
next() must be called at least once for the Type to be valid
-
TAG
public static final IXmlPullParser.HttpTagType TAG
<name ...>
-
BODY
public static final IXmlPullParser.HttpTagType BODY
Tag body in between two tags
-
COMMENT
public static final IXmlPullParser.HttpTagType COMMENT
<!-- ... -->
-
CONDITIONAL_COMMENT
public static final IXmlPullParser.HttpTagType CONDITIONAL_COMMENT
<!--[if ] ... -->
-
CONDITIONAL_COMMENT_ENDIF
public static final IXmlPullParser.HttpTagType CONDITIONAL_COMMENT_ENDIF
<![endif]-->
-
CDATA
public static final IXmlPullParser.HttpTagType CDATA
<![CDATA[ .. ]]>
-
PROCESSING_INSTRUCTION
public static final IXmlPullParser.HttpTagType PROCESSING_INSTRUCTION
<?...>
-
DOCTYPE
public static final IXmlPullParser.HttpTagType DOCTYPE
<!DOCTYPE ...>
-
SPECIAL_TAG
public static final IXmlPullParser.HttpTagType SPECIAL_TAG
all other tags which look like <!.. >
-
-
Method Detail
-
values
public static IXmlPullParser.HttpTagType[] 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 (IXmlPullParser.HttpTagType c : IXmlPullParser.HttpTagType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IXmlPullParser.HttpTagType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-