io.inverno.mod.configuration.internal.parser.option.ConfigurationOptionParserConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of inverno-configuration Show documentation
Show all versions of inverno-configuration Show documentation
Inverno configuration module
/* Generated By:JavaCC: Do not edit this line. ConfigurationOptionParserConstants.java */
package io.inverno.mod.configuration.internal.parser.option;
/**
* Token literal values and constants.
* Generated by org.javacc.parser.OtherFilesGen#start()
*/
public interface ConfigurationOptionParserConstants {
/** End of File. */
int EOF = 0;
/** RegularExpression Id. */
int TRUE = 1;
/** RegularExpression Id. */
int FALSE = 2;
/** RegularExpression Id. */
int NULL = 3;
/** RegularExpression Id. */
int UNSET = 4;
/** RegularExpression Id. */
int LBRACE = 5;
/** RegularExpression Id. */
int RBRACE = 6;
/** RegularExpression Id. */
int LBRACK = 7;
/** RegularExpression Id. */
int RBRACK = 8;
/** RegularExpression Id. */
int DOT = 9;
/** RegularExpression Id. */
int COMMA = 10;
/** RegularExpression Id. */
int EQ = 11;
/** RegularExpression Id. */
int INTEGER_LITERAL = 12;
/** RegularExpression Id. */
int FLOATING_POINT_LITERAL = 13;
/** RegularExpression Id. */
int DECIMAL_LITERAL = 14;
/** RegularExpression Id. */
int HEX_LITERAL = 15;
/** RegularExpression Id. */
int DECIMAL_FLOATING_POINT_LITERAL = 16;
/** RegularExpression Id. */
int HEXADECIMAL_FLOATING_POINT_LITERAL = 17;
/** RegularExpression Id. */
int DECIMAL_EXPONENT = 18;
/** RegularExpression Id. */
int STRING_LITERAL = 19;
/** RegularExpression Id. */
int IDENTIFIER = 20;
/** RegularExpression Id. */
int LETTER = 21;
/** RegularExpression Id. */
int PART_LETTER = 22;
/** Lexical state. */
int DEFAULT = 0;
/** Literal token values. */
String[] tokenImage = {
"",
"\"true\"",
"\"false\"",
"\"null\"",
"\"unset\"",
"\"{\"",
"\"}\"",
"\"[\"",
"\"]\"",
"\".\"",
"\",\"",
"\"=\"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
};
}