/* Generated By:JavaCC: Do not edit this line. ExprParserConstants.java */ package dods.dap.parser; public interface ExprParserConstants { int EOF = 0; int EQUAL = 5; int NOT_EQUAL = 6; int GREATER = 7; int GREATER_EQL = 8; int LESS = 9; int LESS_EQL = 10; int REGEXP = 11; int LBRACKET = 12; int RBRACKET = 13; int COLON = 14; int ASTERISK = 15; int COMMA = 16; int AMPERSAND = 17; int LPAREN = 18; int RPAREN = 19; int LBRACE = 20; int RBRACE = 21; int SEPARATOR = 22; int ID = 23; int INT = 24; int FLOAT = 25; int MANTISSA = 26; int EXPONENT = 27; int STR = 28; int UNQUOTED_STR = 29; int QUOTED_STR = 30; int UNTERM_QUOTE = 31; int DEFAULT = 0; String[] tokenImage = { "<EOF>", "\" \"", "\"\\t\"", "\"\\n\"", "\"\\r\"", "\"=\"", "\"!=\"", "\">\"", "\">=\"", "\"<\"", "\"<=\"", "\"~=\"", "\"[\"", "\"]\"", "\":\"", "\"*\"", "\",\"", "\"&\"", "\"(\"", "\")\"", "\"{\"", "\"}\"", "\".\"", "<ID>", "<INT>", "<FLOAT>", "<MANTISSA>", "<EXPONENT>", "<STR>", "<UNQUOTED_STR>", "<QUOTED_STR>", "<UNTERM_QUOTE>", }; }