org.javacc.utils.ConditionParserConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javacc Show documentation
Show all versions of javacc Show documentation
JavaCC is a parser/scanner generator for Java.
/* Generated By:JavaCC: Do not edit this line. ConditionParserConstants.java */
package org.javacc.utils;
/**
* Token literal values and constants.
* Generated by org.javacc.parser.OtherFilesGen#start()
*/
public interface ConditionParserConstants {
/** End of File. */
int EOF = 0;
/** RegularExpression Id. */
int SINGLE_LINE_COMMENT = 9;
/** RegularExpression Id. */
int FORMAL_COMMENT = 10;
/** RegularExpression Id. */
int MULTI_LINE_COMMENT = 11;
/** RegularExpression Id. */
int LPAREN = 13;
/** RegularExpression Id. */
int RPAREN = 14;
/** RegularExpression Id. */
int BANG = 15;
/** RegularExpression Id. */
int SC_OR = 16;
/** RegularExpression Id. */
int SC_AND = 17;
/** RegularExpression Id. */
int TRUE = 19;
/** RegularExpression Id. */
int FALSE = 20;
/** RegularExpression Id. */
int IDENTIFIER = 21;
/** RegularExpression Id. */
int LETTER = 22;
/** RegularExpression Id. */
int PART_LETTER = 23;
/** Lexical state. */
int DEFAULT = 0;
/** Lexical state. */
int IN_SINGLE_LINE_COMMENT = 1;
/** Lexical state. */
int IN_FORMAL_COMMENT = 2;
/** Lexical state. */
int IN_MULTI_LINE_COMMENT = 3;
/** Literal token values. */
String[] tokenImage = {
"",
"\" \"",
"\"\\t\"",
"\"\\n\"",
"\"\\r\"",
"\"\\f\"",
"\"//\"",
"",
"\"/*\"",
"",
"\"*/\"",
"\"*/\"",
"",
"\"(\"",
"\")\"",
"\"!\"",
"\"||\"",
"\"&&\"",
"\"~\"",
"\"true\"",
"\"false\"",
"",
"",
"",
};
}