org.odata4j.expression
Enum ExpressionParser.TokenType
java.lang.Object
java.lang.Enum<ExpressionParser.TokenType>
org.odata4j.expression.ExpressionParser.TokenType
- All Implemented Interfaces:
- Serializable, Comparable<ExpressionParser.TokenType>
- Enclosing class:
- ExpressionParser
public static enum ExpressionParser.TokenType
- extends Enum<ExpressionParser.TokenType>
CLOSEPAREN
public static final ExpressionParser.TokenType CLOSEPAREN
EXPRESSION
public static final ExpressionParser.TokenType EXPRESSION
NUMBER
public static final ExpressionParser.TokenType NUMBER
OPENPAREN
public static final ExpressionParser.TokenType OPENPAREN
QUOTED_STRING
public static final ExpressionParser.TokenType QUOTED_STRING
SYMBOL
public static final ExpressionParser.TokenType SYMBOL
UNKNOWN
public static final ExpressionParser.TokenType UNKNOWN
WHITESPACE
public static final ExpressionParser.TokenType WHITESPACE
WORD
public static final ExpressionParser.TokenType WORD
valueOf
public static ExpressionParser.TokenType valueOf(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:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
values
public static ExpressionParser.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 (ExpressionParser.TokenType c : ExpressionParser.TokenType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
http://odata4j.org