View Javadoc
1 /* Generated By:JavaCC: Do not edit this line. SelectorParserConstants.java */ 2 package com.codestreet.selector.parser; 3 4 public interface SelectorParserConstants { 5 6 int EOF = 0; 7 int TK_TRUE = 5; 8 int TK_FALSE = 6; 9 int TK_NULL = 7; 10 int TK_OR = 8; 11 int TK_AND = 9; 12 int TK_NOT = 10; 13 int TK_BETWEEN = 11; 14 int TK_LIKE = 12; 15 int TK_IN = 13; 16 int TK_IS = 14; 17 int TK_ESCAPE = 15; 18 int TK_MINUS = 16; 19 int TK_PLUS = 17; 20 int TK_MULT = 18; 21 int TK_DIV = 19; 22 int TK_EQ = 20; 23 int TK_NE = 21; 24 int TK_GT = 22; 25 int TK_GE = 23; 26 int TK_LT = 24; 27 int TK_LE = 25; 28 int TK_LPAREN = 26; 29 int TK_RPAREN = 27; 30 int TK_SEMICOLON = 28; 31 int TK_COMMA = 29; 32 int TK_LONG = 30; 33 int TK_DOUBLE = 31; 34 int TK_EXPONENT = 32; 35 int TK_FLOAT = 33; 36 int TK_STRING = 34; 37 int TK_IDENTIFIER = 35; 38 int TK_LETTER = 36; 39 int TK_DIGIT = 37; 40 41 int DEFAULT = 0; 42 43 String[] tokenImage = { 44 "<EOF>", 45 "\" \"", 46 "\"//t\"", 47 "\"//n\"", 48 "\"//r\"", 49 "\"TRUE\"", 50 "\"FALSE\"", 51 "\"NULL\"", 52 "\"OR\"", 53 "\"AND\"", 54 "\"NOT\"", 55 "\"BETWEEN\"", 56 "\"LIKE\"", 57 "\"IN\"", 58 "\"IS\"", 59 "\"ESCAPE\"", 60 "\"-\"", 61 "\"+\"", 62 "\"*\"", 63 "\"/\"", 64 "\"=\"", 65 "\"<>\"", 66 "\">\"", 67 "\">=\"", 68 "\"<\"", 69 "\"<=\"", 70 "\"(\"", 71 "\")\"", 72 "\";\"", 73 "\",\"", 74 "<TK_LONG>", 75 "<TK_DOUBLE>", 76 "<TK_EXPONENT>", 77 "<TK_FLOAT>", 78 "<TK_STRING>", 79 "<TK_IDENTIFIER>", 80 "<TK_LETTER>", 81 "<TK_DIGIT>", 82 }; 83 84 }

This page was automatically generated by Maven