|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<IRule.Type>
com.thebuzzmedia.sjxp.rule.IRule.Type
public static enum IRule.Type
Used to describe the type of the parse rule.
Enum Constant Summary | |
---|---|
ATTRIBUTE
Type used to indicate that this rule describes 1 or more attribute values that the caller wants parsed. |
|
CHARACTER
Used to describe a rule that will be called Type used to indicate that this rule describes the character data between an open and close tag that the caller wants parsed. |
|
TAG
Type used to indicate a rule interested in START_TAG and END_TAG events for the matching location path. |
Method Summary | |
---|---|
static IRule.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static IRule.Type[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
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 |
Enum Constant Detail |
---|
public static final IRule.Type TAG
public static final IRule.Type ATTRIBUTE
public static final IRule.Type CHARACTER
Method Detail |
---|
public static final IRule.Type[] values()
for(IRule.Type c : IRule.Type.values()) System.out.println(c);
public static IRule.Type valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
|
Copyright 2011 The Buzz Media, LLC | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |