Coverage Report - org.apache.ojb.odmg.oql.OQLLexerTokenTypes
 
Classes in this File Line Coverage Branch Coverage Complexity
OQLLexerTokenTypes
N/A
N/A
0
 
 1  
 // $ANTLR 2.7.5 (20050128): "oql-ojb.g" -> "OQLParser.java"$
 2  
 
 3  
 /* Copyright 2003-2005 The Apache Software Foundation
 4  
  *
 5  
  * Licensed under the Apache License, Version 2.0 (the "License");
 6  
  * you may not use this file except in compliance with the License.
 7  
  * You may obtain a copy of the License at
 8  
  *
 9  
  *     http://www.apache.org/licenses/LICENSE-2.0
 10  
  *
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 
 18  
 package org.apache.ojb.odmg.oql;
 19  
 
 20  
 
 21  
 public interface OQLLexerTokenTypes {
 22  
         int EOF = 1;
 23  
         int NULL_TREE_LOOKAHEAD = 3;
 24  
         int TOK_RPAREN = 4;
 25  
         int TOK_LPAREN = 5;
 26  
         int TOK_COMMA = 6;
 27  
         int TOK_SEMIC = 7;
 28  
         int TOK_COLON = 8;
 29  
         int TOK_DOT = 9;
 30  
         int TOK_INDIRECT = 10;
 31  
         int TOK_CONCAT = 11;
 32  
         int TOK_EQ = 12;
 33  
         int TOK_PLUS = 13;
 34  
         int TOK_MINUS = 14;
 35  
         int TOK_SLASH = 15;
 36  
         int TOK_STAR = 16;
 37  
         int TOK_LE = 17;
 38  
         int TOK_GE = 18;
 39  
         int TOK_NE = 19;
 40  
         int TOK_NE2 = 20;
 41  
         int TOK_LT = 21;
 42  
         int TOK_GT = 22;
 43  
         int TOK_LBRACK = 23;
 44  
         int TOK_RBRACK = 24;
 45  
         int TOK_DOLLAR = 25;
 46  
         int NameFirstCharacter = 26;
 47  
         int NameCharacter = 27;
 48  
         int Identifier = 28;
 49  
         int TOK_UNSIGNED_INTEGER = 29;
 50  
         int TOK_APPROXIMATE_NUMERIC_LITERAL = 30;
 51  
         int TOK_EXACT_NUMERIC_LITERAL = 31;
 52  
         int CharLiteral = 32;
 53  
         int StringLiteral = 33;
 54  
         int WhiteSpace = 34;
 55  
         int NewLine = 35;
 56  
         int CommentLine = 36;
 57  
         int MultiLineComment = 37;
 58  
         int LITERAL_select = 38;
 59  
         int LITERAL_distinct = 39;
 60  
         int LITERAL_from = 40;
 61  
         int LITERAL_where = 41;
 62  
         int LITERAL_order = 42;
 63  
         int LITERAL_by = 43;
 64  
         int LITERAL_group = 44;
 65  
         int LITERAL_prefetch = 45;
 66  
         int LITERAL_exists = 46;
 67  
         int LITERAL_in = 47;
 68  
         int LITERAL_asc = 48;
 69  
         int LITERAL_desc = 49;
 70  
         int LITERAL_or = 50;
 71  
         int LITERAL_and = 51;
 72  
         int LITERAL_nil = 52;
 73  
         int LITERAL_not = 53;
 74  
         int LITERAL_list = 54;
 75  
         int LITERAL_between = 55;
 76  
         int LITERAL_is_undefined = 56;
 77  
         int LITERAL_is_defined = 57;
 78  
         int LITERAL_like = 58;
 79  
         int LITERAL_true = 59;
 80  
         int LITERAL_false = 60;
 81  
         int LITERAL_date = 61;
 82  
         int LITERAL_time = 62;
 83  
         int LITERAL_timestamp = 63;
 84  
 }