StandardTokenizerConstants.cs
上传用户:zhangkuixh
上传日期:2013-09-30
资源大小:5473k
文件大小:2k
- /*
- * 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 CJ = 12;
- public const int KOREAN = 13;
- public const int DIGIT = 14;
- public const int NOISE = 15;
- public const int DEFAULT = 0;
- public static System.String[] tokenImage = new System.String[]{"<EOF>", "<ALPHANUM>", "<APOSTROPHE>", "<ACRONYM>", "<COMPANY>", "<EMAIL>", "<HOST>", "<NUM>", "<P>", "<HAS_DIGIT>", "<ALPHA>", "<LETTER>", "<CJ>", "<KOREAN>", "<DIGIT>", "<NOISE>"};
- }
- }