weka.core.json.sym Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weka-stable Show documentation
Show all versions of weka-stable Show documentation
The Waikato Environment for Knowledge Analysis (WEKA), a machine
learning workbench. This is the stable version. Apart from bugfixes, this version
does not receive any other updates.
//----------------------------------------------------
// The following code was generated by CUP v0.11b 20141202 (SVN rev 60)
//----------------------------------------------------
package weka.core.json;
/** CUP generated interface containing symbol constants. */
public interface sym {
/* terminals */
public static final int LSQUARE = 3;
public static final int INTEGER = 10;
public static final int COLON = 7;
public static final int BOOLEAN = 9;
public static final int NULL = 8;
public static final int RSQUARE = 4;
public static final int STRING = 12;
public static final int EOF = 0;
public static final int DOUBLE = 11;
public static final int error = 1;
public static final int COMMA = 2;
public static final int RCURLY = 6;
public static final int LCURLY = 5;
public static final String[] terminalNames = new String[] {
"EOF",
"error",
"COMMA",
"LSQUARE",
"RSQUARE",
"LCURLY",
"RCURLY",
"COLON",
"NULL",
"BOOLEAN",
"INTEGER",
"DOUBLE",
"STRING"
};
}