org.apache.commons.jexl2.parser.ParserConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-jexl Show documentation
Show all versions of commons-jexl Show documentation
Jexl is an implementation of the JSTL Expression Language with extensions.
/* Generated By:JJTree&JavaCC: Do not edit this line. ParserConstants.java */
package org.apache.commons.jexl2.parser;
/**
* Token literal values and constants.
* Generated by org.javacc.parser.OtherFilesGen#start()
*/
public interface ParserConstants {
/** End of File. */
int EOF = 0;
/** RegularExpression Id. */
int INTEGER_LITERAL = 9;
/** RegularExpression Id. */
int FLOAT_LITERAL = 10;
/** RegularExpression Id. */
int IF = 11;
/** RegularExpression Id. */
int ELSE = 12;
/** RegularExpression Id. */
int FOR = 13;
/** RegularExpression Id. */
int FOREACH = 14;
/** RegularExpression Id. */
int WHILE = 15;
/** RegularExpression Id. */
int NEW = 16;
/** RegularExpression Id. */
int EMPTY = 17;
/** RegularExpression Id. */
int SIZE = 18;
/** RegularExpression Id. */
int NULL = 19;
/** RegularExpression Id. */
int TRUE = 20;
/** RegularExpression Id. */
int FALSE = 21;
/** RegularExpression Id. */
int LPAREN = 22;
/** RegularExpression Id. */
int RPAREN = 23;
/** RegularExpression Id. */
int LCURLY = 24;
/** RegularExpression Id. */
int RCURLY = 25;
/** RegularExpression Id. */
int LBRACKET = 26;
/** RegularExpression Id. */
int RBRACKET = 27;
/** RegularExpression Id. */
int SEMICOL = 28;
/** RegularExpression Id. */
int COLON = 29;
/** RegularExpression Id. */
int COMMA = 30;
/** RegularExpression Id. */
int IN = 31;
/** RegularExpression Id. */
int IDENTIFIER = 67;
/** RegularExpression Id. */
int LETTER = 68;
/** RegularExpression Id. */
int DIGIT = 69;
/** RegularExpression Id. */
int STRING_LITERAL = 70;
/** Lexical state. */
int FOR_EACH_IN = 0;
/** Lexical state. */
int DEFAULT = 1;
/** Literal token values. */
String[] tokenImage = {
"",
"",
"",
"",
"\" \"",
"\"\\t\"",
"\"\\n\"",
"\"\\r\"",
"\"\\f\"",
"",
"",
"\"if\"",
"\"else\"",
"\"for\"",
"\"foreach\"",
"\"while\"",
"\"new\"",
"\"empty\"",
"\"size\"",
"\"null\"",
"\"true\"",
"\"false\"",
"\"(\"",
"\")\"",
"\"{\"",
"\"}\"",
"\"[\"",
"\"]\"",
"\";\"",
"\":\"",
"\",\"",
"\"in\"",
"\"=\"",
"\"?\"",
"\"?:\"",
"\"||\"",
"\"or\"",
"\"&&\"",
"\"and\"",
"\"|\"",
"\"^\"",
"\"&\"",
"\"==\"",
"\"eq\"",
"\"!=\"",
"\"ne\"",
"\"<\"",
"\"lt\"",
"\">\"",
"\"gt\"",
"\"<=\"",
"\"le\"",
"\">=\"",
"\"ge\"",
"\"=~\"",
"\"!~\"",
"\"+\"",
"\"-\"",
"\"*\"",
"\"/\"",
"\"div\"",
"\"%\"",
"\"mod\"",
"\"~\"",
"\"!\"",
"\"not\"",
"\".\"",
"",
"",
"",
"",
};
}