org.grails.web.json.parser.JsonParserConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grace-web-common Show documentation
Show all versions of grace-web-common Show documentation
Grace Framework : Grace Web Common
/* Generated By:JavaCC: Do not edit this line. JsonParserConstants.java */
package org.grails.web.json.parser;
/**
* Token literal values and constants.
* Generated by org.javacc.parser.OtherFilesGen#start()
*/
public interface JsonParserConstants {
/** End of File. */
int EOF = 0;
/** RegularExpression Id. */
int E = 5;
/** RegularExpression Id. */
int DIGITS = 6;
/** RegularExpression Id. */
int HEX_CHAR = 7;
/** RegularExpression Id. */
int UNICODE_CHAR = 8;
/** RegularExpression Id. */
int ESCAPE_CHAR = 9;
/** RegularExpression Id. */
int SINGLE_QUOTE_LITERAL = 10;
/** RegularExpression Id. */
int DOUBLE_QUOTE_LITERAL = 11;
/** RegularExpression Id. */
int QUOTE = 12;
/** RegularExpression Id. */
int ENDQUOTE = 14;
/** RegularExpression Id. */
int CHAR = 15;
/** RegularExpression Id. */
int CNTRL_ESC = 16;
/** RegularExpression Id. */
int HEX = 18;
/** RegularExpression Id. */
int HEX_ESC = 19;
/** Lexical state. */
int DEFAULT = 0;
/** Lexical state. */
int STRING_STATE = 1;
/** Lexical state. */
int ESC_STATE = 2;
/** Lexical state. */
int HEX_STATE = 3;
/** Literal token values. */
String[] tokenImage = {
"",
"\" \"",
"\"\\t\"",
"\"\\n\"",
"\"\\r\"",
"",
"",
"",
"",
"",
"",
"",
"\"\\\"\"",
"\"\\\\\"",
"",
"",
"",
"\"u\"",
"",
"",
"\"{\"",
"\"}\"",
"\"null\"",
"\",\"",
"\":\"",
"\"[\"",
"\"]\"",
"\"true\"",
"\"false\"",
"\"-\"",
"\".\"",
};
}