org.jpmml.lightgbm.PandasCategoricalParserConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpmml-lightgbm Show documentation
Show all versions of jpmml-lightgbm Show documentation
Java library and command-line application for converting LightGBM models to PMML
/* Generated By:JavaCC: Do not edit this line. PandasCategoricalParserConstants.java */
package org.jpmml.lightgbm;
/**
* Token literal values and constants.
* Generated by org.javacc.parser.OtherFilesGen#start()
*/
public interface PandasCategoricalParserConstants {
/** End of File. */
int EOF = 0;
/** RegularExpression Id. */
int LBRACKET = 2;
/** RegularExpression Id. */
int RBRACKET = 3;
/** RegularExpression Id. */
int COMMA = 4;
/** RegularExpression Id. */
int NULL = 5;
/** RegularExpression Id. */
int INT = 6;
/** RegularExpression Id. */
int FLOAT = 7;
/** RegularExpression Id. */
int STRING = 8;
/** RegularExpression Id. */
int SIGN = 9;
/** RegularExpression Id. */
int DIGIT = 10;
/** RegularExpression Id. */
int EXPONENT = 11;
/** Lexical state. */
int DEFAULT = 0;
/** Literal token values. */
String[] tokenImage = {
"",
"\" \"",
"\"[\"",
"\"]\"",
"\",\"",
"\"null\"",
"",
"",
"",
"",
"",
"",
"\"pandas_categorical:\"",
};
}