public static enum IXmlPullParser.HttpTagType extends Enum<IXmlPullParser.HttpTagType>
Enum Constant and Description |
---|
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
|
Modifier and Type | Method and 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.
|
public static final IXmlPullParser.HttpTagType NOT_INITIALIZED
public static final IXmlPullParser.HttpTagType TAG
public static final IXmlPullParser.HttpTagType BODY
public static final IXmlPullParser.HttpTagType COMMENT
public static final IXmlPullParser.HttpTagType CONDITIONAL_COMMENT
public static final IXmlPullParser.HttpTagType CONDITIONAL_COMMENT_ENDIF
public static final IXmlPullParser.HttpTagType CDATA
public static final IXmlPullParser.HttpTagType PROCESSING_INSTRUCTION
public static final IXmlPullParser.HttpTagType DOCTYPE
public static final IXmlPullParser.HttpTagType SPECIAL_TAG
public static IXmlPullParser.HttpTagType[] values()
for (IXmlPullParser.HttpTagType c : IXmlPullParser.HttpTagType.values()) System.out.println(c);
public static IXmlPullParser.HttpTagType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2006–2022 Apache Software Foundation. All rights reserved.