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

org.hornetq.core.filter.impl.FilterParserConstants Maven / Gradle / Ivy

Go to download

This artifact provides a single jar that contains all classes required to use remote EJB and JMS, including all dependencies. It is intended for use by those not using maven, maven users should just import the EJB and JMS BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up with different versions on classes on the class path).

There is a newer version: 32.0.0.Final
Show newest version
/* Generated By:JavaCC: Do not edit this line. FilterParserConstants.java */
package org.hornetq.core.filter.impl;


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

  /** End of File. */
  int EOF = 0;
  /** RegularExpression Id. */
  int TRUE = 6;
  /** RegularExpression Id. */
  int FALSE = 7;
  /** RegularExpression Id. */
  int NULL = 8;
  /** RegularExpression Id. */
  int AND = 9;
  /** RegularExpression Id. */
  int NOT = 10;
  /** RegularExpression Id. */
  int OR = 11;
  /** RegularExpression Id. */
  int BETWEEN = 12;
  /** RegularExpression Id. */
  int LIKE = 13;
  /** RegularExpression Id. */
  int IN = 14;
  /** RegularExpression Id. */
  int IS = 15;
  /** RegularExpression Id. */
  int ESCAPE = 16;
  /** RegularExpression Id. */
  int LPAREN = 17;
  /** RegularExpression Id. */
  int RPAREN = 18;
  /** RegularExpression Id. */
  int SEMICOLON = 19;
  /** RegularExpression Id. */
  int COMMA = 20;
  /** RegularExpression Id. */
  int MULT = 21;
  /** RegularExpression Id. */
  int DIV = 22;
  /** RegularExpression Id. */
  int MINUS = 23;
  /** RegularExpression Id. */
  int PLUS = 24;
  /** RegularExpression Id. */
  int GT = 25;
  /** RegularExpression Id. */
  int GE = 26;
  /** RegularExpression Id. */
  int LT = 27;
  /** RegularExpression Id. */
  int LE = 28;
  /** RegularExpression Id. */
  int NE = 29;
  /** RegularExpression Id. */
  int EQ = 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 SIMPLE_STRING = 37;
  /** RegularExpression Id. */
  int IDENTIFIER = 38;
  /** RegularExpression Id. */
  int LETTER = 39;
  /** RegularExpression Id. */
  int DIGIT = 40;

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

  /** Literal token values. */
  String[] tokenImage = {
    "",
    "\" \"",
    "\"\\r\"",
    "\"\\t\"",
    "\"\\f\"",
    "\"\\n\"",
    "\"TRUE\"",
    "\"FALSE\"",
    "\"NULL\"",
    "\"AND\"",
    "\"NOT\"",
    "\"OR\"",
    "\"BETWEEN\"",
    "\"LIKE\"",
    "\"IN\"",
    "\"IS\"",
    "\"ESCAPE\"",
    "\"(\"",
    "\")\"",
    "\";\"",
    "\",\"",
    "\"*\"",
    "\"/\"",
    "\"-\"",
    "\"+\"",
    "\">\"",
    "\">=\"",
    "\"<\"",
    "\"<=\"",
    "\"<>\"",
    "\"=\"",
    "",
    "",
    "",
    "",
    "",
    "",
    "",
    "",
    "",
    "",
  };

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy