org.apache.wicket.markup.parser
Enum IXmlPullParser.HttpTagType

java.lang.Object
  extended by java.lang.Enum<IXmlPullParser.HttpTagType>
      extended by org.apache.wicket.markup.parser.IXmlPullParser.HttpTagType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IXmlPullParser.HttpTagType>
Enclosing interface:
IXmlPullParser

public static enum IXmlPullParser.HttpTagType
extends java.lang.Enum<IXmlPullParser.HttpTagType>

The last element found


Enum Constant Summary
BODY
          Tag body in between two tags
CDATA
          
COMMENT
           
CONDITIONAL_COMMENT
           
CONDITIONAL_COMMENT_ENDIF
          
DOCTYPE
          
NOT_INITIALIZED
          next() must be called at least once for the Type to be valid
PROCESSING_INSTRUCTION
          
SPECIAL_TAG
          all other tags which look like
TAG
          
 
Method Summary
static IXmlPullParser.HttpTagType valueOf(java.lang.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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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


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


CONDITIONAL_COMMENT_ENDIF

public static final IXmlPullParser.HttpTagType CONDITIONAL_COMMENT_ENDIF


CDATA

public static final IXmlPullParser.HttpTagType CDATA


PROCESSING_INSTRUCTION

public static final IXmlPullParser.HttpTagType PROCESSING_INSTRUCTION


DOCTYPE

public static final IXmlPullParser.HttpTagType 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(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
java.lang.NullPointerException - if the argument is null


Copyright © 2006-2011 Apache Software Foundation. All Rights Reserved.