|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PropertyScanner.Token>
net.sf.jagg.PropertyScanner.Token
public static enum PropertyScanner.Token
Enumeration for the different types of Tokens.
Method Summary | |
---|---|
int |
getCode()
Returns the unique code associated with this Token . |
static PropertyScanner.Token |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static PropertyScanner.Token[] |
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 PropertyScanner.Token TOKEN_ERROR_EOI_IN_SQUOTES
public static final PropertyScanner.Token TOKEN_ERROR_EOI_IN_DQUOTES
public static final PropertyScanner.Token TOKEN_ERROR_BUF_NULL
public static final PropertyScanner.Token TOKEN_UNKNOWN
public static final PropertyScanner.Token TOKEN_WHITESPACE
public static final PropertyScanner.Token TOKEN_STRING
public static final PropertyScanner.Token TOKEN_COMMA
public static final PropertyScanner.Token TOKEN_DOUBLE_QUOTE
public static final PropertyScanner.Token TOKEN_SINGLE_QUOTE
public static final PropertyScanner.Token TOKEN_LEFT_PAREN
public static final PropertyScanner.Token TOKEN_RIGHT_PAREN
public static final PropertyScanner.Token TOKEN_EOI
Method Detail |
---|
public static final PropertyScanner.Token[] values()
for(PropertyScanner.Token c : PropertyScanner.Token.values()) System.out.println(c);
public static PropertyScanner.Token valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namepublic int getCode()
Token
.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |