com.vectorprint.configuration.generated.parser.PropertiesParserConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Config Show documentation
Show all versions of Config Show documentation
This project is about configuration of applications and about parameterization of Objects.
This library offers annotations (and annotation processors), parsers, typing, observing changes, serialization,
cloning and more when working with settings and/or object parameters. Settings and its features can be declared using an xml format.
The library offers syntax support for settings and parameters in a loosely coupled manner. You are not restricted to built in syntax, you
can provide your own.
At runtime this library tracks keys for which a default is used because they are not found in settings. Also it tracks
unused keys.
You can stack features for settings such as caching, preparing keys and values, readonlyness, threadsafety, helpsupport, reading / parsing from input. You can easily develop
your own features for settings.
/* Generated by: ParserGeneratorCC: Do not edit this line. PropertiesParserConstants.java */
package com.vectorprint.configuration.generated.parser;
/**
* Token literal values and constants.
* Generated by com.helger.pgcc.output.java.OtherFilesGenJava#start()
*/
public interface PropertiesParserConstants {
/** End of File. */
int EOF = 0;
/** RegularExpression Id. */
int COMMENT = 7;
/** RegularExpression Id. */
int KEY = 9;
/** RegularExpression Id. */
int LETTER = 10;
/** RegularExpression Id. */
int PART_LETTER = 11;
/** RegularExpression Id. */
int EQ = 12;
/** RegularExpression Id. */
int CONTINUATION = 13;
/** RegularExpression Id. */
int SEMICOLON = 14;
/** RegularExpression Id. */
int ESCAPEDSEMICOLON = 15;
/** RegularExpression Id. */
int EOL = 16;
/** RegularExpression Id. */
int VALUE = 17;
/** Lexical state. */
int DEFAULT = 0;
/** Lexical state. */
int IN_SINGLE_LINE_COMMENT = 1;
/** Lexical state. */
int VALUESTATE = 2;
/** Literal token values. */
String[] tokenImage = {
"",
"\"\\n\"",
"\"\\r\"",
"\"\\r\\n\"",
"\" \"",
"\"\\t\"",
"\"#\"",
"",
"",
"",
"",
"",
"\"=\"",
"",
"\";\"",
"\"\\\\;\"",
"",
"",
};
}