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

com.gs.obevo.db.sqlparser.syntaxparser.SqlParserConstants Maven / Gradle / Ivy

There is a newer version: 8.2.1
Show newest version
/* Generated By:JJTree&JavaCC: Do not edit this line. SqlParserConstants.java */
package com.gs.obevo.db.sqlparser.syntaxparser;


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

  /** End of File. */
  int EOF = 0;
  /** RegularExpression Id. */
  int SINGLE_LINE_COMMENT = 10;
  /** RegularExpression Id. */
  int FORMAL_COMMENT = 11;
  /** RegularExpression Id. */
  int MULTI_LINE_COMMENT = 12;
  /** RegularExpression Id. */
  int CREATE = 14;
  /** RegularExpression Id. */
  int ALTER = 15;
  /** RegularExpression Id. */
  int ADD = 16;
  /** RegularExpression Id. */
  int DROP = 17;
  /** RegularExpression Id. */
  int TABLE = 18;
  /** RegularExpression Id. */
  int INDEX = 19;
  /** RegularExpression Id. */
  int COLUMN = 20;
  /** RegularExpression Id. */
  int SEQUENCE = 21;
  /** RegularExpression Id. */
  int TRIGGER = 22;
  /** RegularExpression Id. */
  int CONSTRAINT = 23;
  /** RegularExpression Id. */
  int PRIMARY = 24;
  /** RegularExpression Id. */
  int FOREIGN = 25;
  /** RegularExpression Id. */
  int KEY = 26;
  /** RegularExpression Id. */
  int ON = 27;
  /** RegularExpression Id. */
  int UNIQUE = 28;
  /** RegularExpression Id. */
  int CLUSTERED = 29;
  /** RegularExpression Id. */
  int NONCLUSTERED = 30;
  /** RegularExpression Id. */
  int INTEGER_LITERAL = 31;
  /** RegularExpression Id. */
  int DECIMAL_LITERAL = 32;
  /** RegularExpression Id. */
  int HEX_LITERAL = 33;
  /** RegularExpression Id. */
  int OCTAL_LITERAL = 34;
  /** RegularExpression Id. */
  int FLOATING_POINT_LITERAL = 35;
  /** RegularExpression Id. */
  int EXPONENT = 36;
  /** RegularExpression Id. */
  int STRING_LITERAL = 37;
  /** RegularExpression Id. */
  int IDENTIFIER = 38;
  /** RegularExpression Id. */
  int LETTER = 39;
  /** RegularExpression Id. */
  int DIGIT = 40;
  /** RegularExpression Id. */
  int LPAREN = 41;
  /** RegularExpression Id. */
  int RPAREN = 42;
  /** RegularExpression Id. */
  int MINUS = 43;
  /** RegularExpression Id. */
  int ASSIGN = 44;
  /** RegularExpression Id. */
  int LBRACE = 45;
  /** RegularExpression Id. */
  int RBRACE = 46;
  /** RegularExpression Id. */
  int DOLLAR = 47;
  /** RegularExpression Id. */
  int DOT = 48;
  /** RegularExpression Id. */
  int POUND = 49;

  /** Lexical state. */
  int DEFAULT = 0;
  /** Lexical state. */
  int IN_SINGLE_LINE_COMMENT = 1;
  /** Lexical state. */
  int IN_FORMAL_COMMENT = 2;
  /** Lexical state. */
  int IN_MULTI_LINE_COMMENT = 3;

  /** Literal token values. */
  String[] tokenImage = {
    "",
    "\" \"",
    "\"\\t\"",
    "\"\\n\"",
    "\"\\r\"",
    "\"\\f\"",
    "\"//\"",
    "\"--\"",
    "",
    "\"/*\"",
    "",
    "\"*/\"",
    "\"*/\"",
    "",
    "\"create\"",
    "\"alter\"",
    "\"add\"",
    "\"drop\"",
    "\"table\"",
    "\"index\"",
    "\"column\"",
    "\"sequence\"",
    "\"trigger\"",
    "\"constraint\"",
    "\"primary\"",
    "\"foreign\"",
    "\"key\"",
    "\"on\"",
    "\"unique\"",
    "\"clustered\"",
    "\"nonclustered\"",
    "",
    "",
    "",
    "",
    "",
    "",
    "",
    "",
    "",
    "",
    "\"(\"",
    "\")\"",
    "\"-\"",
    "\"=\"",
    "\"{\"",
    "\"}\"",
    "\"$\"",
    "\".\"",
    "\"#\"",
    "\",\"",
  };

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy