All Downloads are FREE. Search and download functionalities are using the official Maven repository.

juzu.impl.common.JSONParserConstants Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
/* Generated By:JavaCC: Do not edit this line. JSONParserConstants.java */
package juzu.impl.common;


/**
 * Token literal values and constants.
 * Generated by org.javacc.parser.OtherFilesGen#start()
 */
public interface JSONParserConstants {

  /** End of File. */
  int EOF = 0;
  /** RegularExpression Id. */
  int SINGLE_LINE_COMMENT_C_STYLE = 6;
  /** RegularExpression Id. */
  int SINGLE_LINE_COMMENT_BASH_STYLE = 7;
  /** RegularExpression Id. */
  int MULTI_LINE_COMMENT_C_STYLE = 8;
  /** RegularExpression Id. */
  int MULTI_LINE_COMMENT_HTML_STYLE = 9;
  /** RegularExpression Id. */
  int K_TRUE = 10;
  /** RegularExpression Id. */
  int K_FALSE = 11;
  /** RegularExpression Id. */
  int K_NULL = 12;
  /** RegularExpression Id. */
  int O_OPENBRACE = 13;
  /** RegularExpression Id. */
  int O_CLOSEBRACE = 14;
  /** RegularExpression Id. */
  int O_OPENBRACKET = 15;
  /** RegularExpression Id. */
  int O_CLOSEBRACKET = 16;
  /** RegularExpression Id. */
  int O_COMMA = 17;
  /** RegularExpression Id. */
  int O_COLON = 18;
  /** RegularExpression Id. */
  int O_DOT = 19;
  /** RegularExpression Id. */
  int O_PLUS = 20;
  /** RegularExpression Id. */
  int O_MINUS = 21;
  /** RegularExpression Id. */
  int DIGIT = 22;
  /** RegularExpression Id. */
  int NONZERO_DIGIT = 23;
  /** RegularExpression Id. */
  int EXP = 24;
  /** RegularExpression Id. */
  int NUMBER = 25;
  /** RegularExpression Id. */
  int INTEGER = 26;
  /** RegularExpression Id. */
  int FRACTIONAL_DIGITS = 27;
  /** RegularExpression Id. */
  int EXPONENT = 28;
  /** RegularExpression Id. */
  int DIGITS = 29;
  /** RegularExpression Id. */
  int SINGLE_QUOTED_STRING = 30;
  /** RegularExpression Id. */
  int QUOTED_STRING = 31;
  /** RegularExpression Id. */
  int UNQUOTED_STRING = 32;

  /** Lexical state. */
  int DEFAULT = 0;

  /** Literal token values. */
  String[] tokenImage = {
    "",
    "\" \"",
    "\"\\t\"",
    "\"\\n\"",
    "\"\\r\"",
    "\"\\f\"",
    "",
    "",
    "",
    "",
    "\"true\"",
    "\"false\"",
    "\"null\"",
    "\"{\"",
    "\"}\"",
    "\"[\"",
    "\"]\"",
    "\",\"",
    "\":\"",
    "\".\"",
    "\"+\"",
    "\"-\"",
    "",
    "",
    "",
    "",
    "",
    "",
    "",
    "",
    "",
    "",
    "",
  };

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy