com.vectorprint.configuration.parser.HelpParserConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of VectorPrintConfig Show documentation
Show all versions of VectorPrintConfig Show documentation
A library for configuration of applications and parameterization of objects. Settings can be provided in a configfile (file, url, stream), as arguments and programmatically, object parameters can be set using annotations or code. Both provide data type support, serialization, cloning, a help mechanism.
/* Generated By:JavaCC: Do not edit this line. HelpParserConstants.java */
package com.vectorprint.configuration.parser;
/**
* Token literal values and constants.
* Generated by org.javacc.parser.OtherFilesGen#start()
*/
public interface HelpParserConstants {
/** End of File. */
int EOF = 0;
/** RegularExpression Id. */
int EQ = 3;
/** RegularExpression Id. */
int SEMICOLON = 4;
/** RegularExpression Id. */
int KEY = 5;
/** RegularExpression Id. */
int LETTER = 6;
/** RegularExpression Id. */
int PART_LETTER = 7;
/** RegularExpression Id. */
int TYPE = 10;
/** RegularExpression Id. */
int VALUE = 11;
/** RegularExpression Id. */
int CONTINUATION = 12;
/** RegularExpression Id. */
int EOL = 13;
/** Lexical state. */
int DEFAULT = 0;
/** Lexical state. */
int TYPESTATE = 1;
/** Lexical state. */
int VALUESTATE = 2;
/** Literal token values. */
String[] tokenImage = {
"",
"\" \"",
"\"\\t\"",
"\"=\"",
"\";\"",
"",
"",
"",
"\" \"",
"\"\\t\"",
"",
"",
"",
"",
};
}