/* * Copyright 2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* Generated By:JavaCC: Do not edit this line. StandardTokenizerConstants.java */ using System; namespace Lucene.Net.Analysis.Standard { public class StandardTokenizerConstants { public const int EOF = 0; public const int ALPHANUM = 1; public const int APOSTROPHE = 2; public const int ACRONYM = 3; public const int COMPANY = 4; public const int EMAIL = 5; public const int HOST = 6; public const int NUM = 7; public const int P = 8; public const int HAS_DIGIT = 9; public const int ALPHA = 10; public const int LETTER = 11; public const int CJK = 12; public const int DIGIT = 13; public const int NOISE = 14; public const int DEFAULT = 0; public static System.String[] tokenImage = new System.String[] { "", "", "", "", "", "", "", "", "

", "", "", "", "", "", "" }; } }