add --shared
[pylucene.git] / lucene-java-3.4.0 / lucene / contrib / queryparser / src / java / org / apache / lucene / queryParser / surround / parser / QueryParserConstants.java
1 /* Generated By:JavaCC: Do not edit this line. QueryParserConstants.java */
2 package org.apache.lucene.queryParser.surround.parser;
3
4
5 /**
6  * Token literal values and constants.
7  * Generated by org.javacc.parser.OtherFilesGen#start()
8  */
9 public interface QueryParserConstants {
10
11   /** End of File. */
12   int EOF = 0;
13   /** RegularExpression Id. */
14   int _NUM_CHAR = 1;
15   /** RegularExpression Id. */
16   int _TERM_CHAR = 2;
17   /** RegularExpression Id. */
18   int _WHITESPACE = 3;
19   /** RegularExpression Id. */
20   int _STAR = 4;
21   /** RegularExpression Id. */
22   int _ONE_CHAR = 5;
23   /** RegularExpression Id. */
24   int _DISTOP_NUM = 6;
25   /** RegularExpression Id. */
26   int OR = 8;
27   /** RegularExpression Id. */
28   int AND = 9;
29   /** RegularExpression Id. */
30   int NOT = 10;
31   /** RegularExpression Id. */
32   int W = 11;
33   /** RegularExpression Id. */
34   int N = 12;
35   /** RegularExpression Id. */
36   int LPAREN = 13;
37   /** RegularExpression Id. */
38   int RPAREN = 14;
39   /** RegularExpression Id. */
40   int COMMA = 15;
41   /** RegularExpression Id. */
42   int COLON = 16;
43   /** RegularExpression Id. */
44   int CARAT = 17;
45   /** RegularExpression Id. */
46   int TRUNCQUOTED = 18;
47   /** RegularExpression Id. */
48   int QUOTED = 19;
49   /** RegularExpression Id. */
50   int SUFFIXTERM = 20;
51   /** RegularExpression Id. */
52   int TRUNCTERM = 21;
53   /** RegularExpression Id. */
54   int TERM = 22;
55   /** RegularExpression Id. */
56   int NUMBER = 23;
57
58   /** Lexical state. */
59   int Boost = 0;
60   /** Lexical state. */
61   int DEFAULT = 1;
62
63   /** Literal token values. */
64   String[] tokenImage = {
65     "<EOF>",
66     "<_NUM_CHAR>",
67     "<_TERM_CHAR>",
68     "<_WHITESPACE>",
69     "\"*\"",
70     "\"?\"",
71     "<_DISTOP_NUM>",
72     "<token of kind 7>",
73     "<OR>",
74     "<AND>",
75     "<NOT>",
76     "<W>",
77     "<N>",
78     "\"(\"",
79     "\")\"",
80     "\",\"",
81     "\":\"",
82     "\"^\"",
83     "<TRUNCQUOTED>",
84     "<QUOTED>",
85     "<SUFFIXTERM>",
86     "<TRUNCTERM>",
87     "<TERM>",
88     "<NUMBER>",
89   };
90
91 }