|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Token.Type>
pmp.Token.Type
public static enum Token.Type
Enum Constant Summary | |
---|---|
CLOSING_BRACKET
End of paramlist |
|
CODE
|
|
CODE_END
|
|
CODE_START
|
|
EMPTY
|
|
END
|
|
MACRO_NAME
Token is possibly name of macro. |
|
OPENING_BRACKET
Start of paramlist |
|
PARAM_SEPARATOR
|
|
PLAINTEXT
|
|
SINGLE_CHAR
|
|
START
|
|
STRING_END
|
|
STRING_SPECIAL_SYMBOL
|
|
STRING_START
|
|
STRING_TOKEN
|
Method Summary | |
---|---|
static Token.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Token.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 Token.Type EMPTY
public static final Token.Type START
public static final Token.Type END
public static final Token.Type SINGLE_CHAR
public static final Token.Type PLAINTEXT
public static final Token.Type CODE_START
public static final Token.Type CODE_END
public static final Token.Type CODE
public static final Token.Type MACRO_NAME
public static final Token.Type OPENING_BRACKET
public static final Token.Type CLOSING_BRACKET
public static final Token.Type PARAM_SEPARATOR
public static final Token.Type STRING_START
public static final Token.Type STRING_END
public static final Token.Type STRING_TOKEN
public static final Token.Type STRING_SPECIAL_SYMBOL
Method Detail |
---|
public static final Token.Type[] values()
for(Token.Type c : Token.Type.values()) System.out.println(c);
public static Token.Type 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 name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |