KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > ojb > jdo > jdoql > JDOQLTokenTypes


1 // $ANTLR 2.7.5 (20050128): "jdoql-ojb-lexer.g" -> "JDOQLLexer.java"$
2

3     package org.apache.ojb.jdo.jdoql;
4
5 /* Copyright 2003-2005 The Apache Software Foundation
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */

19
20 public interface JDOQLTokenTypes {
21     int EOF = 1;
22     int NULL_TREE_LOOKAHEAD = 3;
23     int PARAMETERS = 4;
24     int PARAMETER = 5;
25     int VARIABLES = 6;
26     int VARIABLE = 7;
27     int IMPORTS = 8;
28     int IMPORT = 9;
29     int ON_DEMAND_IMPORT = 10;
30     int ORDERSPECS = 11;
31     int ORDERSPEC = 12;
32     int EXPR = 13;
33     int CAST = 14;
34     int METHOD_INVOCATION = 15;
35     int ARG_LIST = 16;
36     int NAME_EXPRESSION = 17;
37     int PRIMITIVE_TYPE = 18;
38     int NAME = 19;
39     int LITERAL_IMPORT = 20;
40     int LITERAL_ASCENDING = 21;
41     int LITERAL_DESCENDING = 22;
42     int LITERAL_TRUE = 23;
43     int LITERAL_FALSE = 24;
44     int LITERAL_NULL = 25;
45     int LITERAL_THIS = 26;
46     int LITERAL_BOOLEAN = 27;
47     int LITERAL_BYTE = 28;
48     int LITERAL_SHORT = 29;
49     int LITERAL_INT = 30;
50     int LITERAL_LONG = 31;
51     int LITERAL_CHAR = 32;
52     int LITERAL_FLOAT = 33;
53     int LITERAL_DOUBLE = 34;
54     int OP_GREATER_OR_EQUAL = 35;
55     int OP_LOWER_OR_EQUAL = 36;
56     int OP_NOT_EQUAL = 37;
57     int OP_AND = 38;
58     int OP_OR = 39;
59     int OP_UNARY_MINUS = 40;
60     int OP_UNARY_PLUS = 41;
61     int SEP_DOT = 42;
62     int FLOATING_POINT_LITERAL = 43;
63     int INTEGER_LITERAL = 44;
64     int SEP_OPENING_PARENTHESIS = 45;
65     int SEP_CLOSING_PARENTHESIS = 46;
66     int SEP_SEMICOLON = 47;
67     int SEP_COMMA = 48;
68     int OP_EQUAL = 49;
69     int OP_GREATER = 50;
70     int OP_LOWER = 51;
71     int OP_NOT = 52;
72     int OP_BITWISE_COMPLEMENT = 53;
73     int OP_BITWISE_AND = 54;
74     int OP_BITWISE_OR = 55;
75     int OP_BITWISE_XOR = 56;
76     int OP_BINARY_PLUS = 57;
77     int OP_BINARY_MINUS = 58;
78     int OP_MULTIPLY = 59;
79     int OP_DIVIDE = 60;
80     int WHITESPACE = 61;
81     int IDENTIFIER = 62;
82     int CHARACTER_LITERAL = 63;
83     int STRING_LITERAL = 64;
84     int INT_OR_FLOAT_LITERAL_OR_DOT = 65;
85     int LINE_TERMINATOR = 66;
86     int ESCAPE_SEQUENCE = 67;
87     int UNICODE_ESCAPE = 68;
88     int OCTAL_ESCAPE = 69;
89     int OCTAL_DIGIT = 70;
90     int DIGIT = 71;
91     int HEX_DIGIT = 72;
92     int EXPONENT_PART = 73;
93     int INTEGER_TYPE_SUFFIX = 74;
94     int FLOAT_TYPE_SUFFIX = 75;
95     int IDENTIFIER_START = 76;
96     int IDENTIFIER_PART = 77;
97 }
98
Popular Tags