Package com.attivio.sdk.util
Enum StringParser.TokenType
- java.lang.Object
- 
- java.lang.Enum<StringParser.TokenType>
- 
- com.attivio.sdk.util.StringParser.TokenType
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<StringParser.TokenType>
 - Enclosing class:
- StringParser
 
 public static enum StringParser.TokenType extends java.lang.Enum<StringParser.TokenType> Type for a token.
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static StringParser.TokenTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static StringParser.TokenType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
COMMApublic static final StringParser.TokenType COMMA 
 - 
TILDApublic static final StringParser.TokenType TILDA 
 - 
CARETpublic static final StringParser.TokenType CARET 
 - 
COLONpublic static final StringParser.TokenType COLON 
 - 
SEMICOLONpublic static final StringParser.TokenType SEMICOLON 
 - 
SLASHpublic static final StringParser.TokenType SLASH 
 - 
ATpublic static final StringParser.TokenType AT 
 - 
LPARENpublic static final StringParser.TokenType LPAREN 
 - 
RPARENpublic static final StringParser.TokenType RPAREN 
 - 
LSQUAREpublic static final StringParser.TokenType LSQUARE 
 - 
RSQUAREpublic static final StringParser.TokenType RSQUARE 
 - 
LCURLYpublic static final StringParser.TokenType LCURLY 
 - 
RCURLYpublic static final StringParser.TokenType RCURLY 
 - 
EQpublic static final StringParser.TokenType EQ 
 - 
NEpublic static final StringParser.TokenType NE 
 - 
LTpublic static final StringParser.TokenType LT 
 - 
GTpublic static final StringParser.TokenType GT 
 - 
LEpublic static final StringParser.TokenType LE 
 - 
GEpublic static final StringParser.TokenType GE 
 - 
INTEGERpublic static final StringParser.TokenType INTEGER 
 - 
FLOATpublic static final StringParser.TokenType FLOAT 
 - 
DATEpublic static final StringParser.TokenType DATE 
 - 
STRINGpublic static final StringParser.TokenType STRING 
 - 
VARpublic static final StringParser.TokenType VAR 
 - 
BINARYpublic static final StringParser.TokenType BINARY 
 - 
EOSpublic static final StringParser.TokenType EOS 
 
- 
 - 
Method Detail- 
valuespublic static StringParser.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 (StringParser.TokenType c : StringParser.TokenType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static StringParser.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
 
 
- 
 
-