org.pz.platypus
Enum TokenType
java.lang.Object
java.lang.Enum<TokenType>
org.pz.platypus.TokenType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<TokenType>
public enum TokenType
- extends java.lang.Enum<TokenType>
Enums representing the various input tokens.
Navigation note: error status codes are in Status.java
- Author:
- alb, modified by ask.
Field Summary |
private java.lang.String |
desc
|
Method Summary |
java.lang.String |
toString()
|
static TokenType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TokenType[] |
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, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
LINE
public static final TokenType LINE
TEXT
public static final TokenType TEXT
MACRO_TEXT
public static final TokenType MACRO_TEXT
SYMBOL
public static final TokenType SYMBOL
COMMAND
public static final TokenType COMMAND
COMPOUND_COMMAND
public static final TokenType COMPOUND_COMMAND
COMPOUND_COMMAND_END
public static final TokenType COMPOUND_COMMAND_END
REPLACED_COMMAND
public static final TokenType REPLACED_COMMAND
MACRO
public static final TokenType MACRO
LINE_COMMENT
public static final TokenType LINE_COMMENT
BLOCK_COMMENT
public static final TokenType BLOCK_COMMENT
EOF
public static final TokenType EOF
COMMAND_FONT_FAMILY
public static final TokenType COMMAND_FONT_FAMILY
desc
private java.lang.String desc
values
public static TokenType[] 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 (TokenType c : TokenType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static TokenType 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
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Enum<TokenType>
Copyright © 2008-10 Pacific Data Works LLC