Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/* Generated By:JavaCC: Do not edit this line. SelectorParserConstants.java */
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.selector;
/**
* Token literal values and constants.
* Generated by org.javacc.parser.OtherFilesGen#start()
*/
public interface SelectorParserConstants {
/** End of File. */
int EOF = 0;
/** RegularExpression Id. */
int LINE_COMMENT = 6;
/** RegularExpression Id. */
int BLOCK_COMMENT = 7;
/** RegularExpression Id. */
int NOT = 8;
/** RegularExpression Id. */
int AND = 9;
/** RegularExpression Id. */
int OR = 10;
/** RegularExpression Id. */
int BETWEEN = 11;
/** RegularExpression Id. */
int LIKE = 12;
/** RegularExpression Id. */
int ESCAPE = 13;
/** RegularExpression Id. */
int IN = 14;
/** RegularExpression Id. */
int IS = 15;
/** RegularExpression Id. */
int TRUE = 16;
/** RegularExpression Id. */
int FALSE = 17;
/** RegularExpression Id. */
int NULL = 18;
/** RegularExpression Id. */
int XPATH = 19;
/** RegularExpression Id. */
int XQUERY = 20;
/** RegularExpression Id. */
int DECIMAL_LITERAL = 21;
/** RegularExpression Id. */
int HEX_LITERAL = 22;
/** RegularExpression Id. */
int OCTAL_LITERAL = 23;
/** RegularExpression Id. */
int FLOATING_POINT_LITERAL = 24;
/** RegularExpression Id. */
int EXPONENT = 25;
/** RegularExpression Id. */
int STRING_LITERAL = 26;
/** RegularExpression Id. */
int ID = 27;
/** Lexical state. */
int DEFAULT = 0;
/** Literal token values. */
String[] tokenImage = {
"",
"\" \"",
"\"\\t\"",
"\"\\n\"",
"\"\\r\"",
"\"\\f\"",
"",
"",
"\"NOT\"",
"\"AND\"",
"\"OR\"",
"\"BETWEEN\"",
"\"LIKE\"",
"\"ESCAPE\"",
"\"IN\"",
"\"IS\"",
"\"TRUE\"",
"\"FALSE\"",
"\"NULL\"",
"\"XPATH\"",
"\"XQUERY\"",
"",
"",
"",
"",
"",
"",
"",
"\"=\"",
"\"<>\"",
"\">\"",
"\">=\"",
"\"<\"",
"\"<=\"",
"\"(\"",
"\",\"",
"\")\"",
"\"+\"",
"\"-\"",
"\"*\"",
"\"/\"",
"\"%\"",
};
}