StandardTokenizerConstants.cs
上传用户:zhangkuixh
上传日期:2013-09-30
资源大小:5473k
文件大小:2k
源码类别:

搜索引擎

开发平台:

C#

  1. /*
  2.  * Copyright 2004 The Apache Software Foundation
  3.  * 
  4.  * Licensed under the Apache License, Version 2.0 (the "License");
  5.  * you may not use this file except in compliance with the License.
  6.  * You may obtain a copy of the License at
  7.  * 
  8.  * http://www.apache.org/licenses/LICENSE-2.0
  9.  * 
  10.  * Unless required by applicable law or agreed to in writing, software
  11.  * distributed under the License is distributed on an "AS IS" BASIS,
  12.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.  * See the License for the specific language governing permissions and
  14.  * limitations under the License.
  15.  */
  16. /* Generated By:JavaCC: Do not edit this line. StandardTokenizerConstants.java */
  17. using System;
  18. namespace Lucene.Net.Analysis.Standard
  19. {
  20. public class StandardTokenizerConstants
  21.     {
  22. public const int EOF = 0;
  23. public const int ALPHANUM = 1;
  24. public const int APOSTROPHE = 2;
  25. public const int ACRONYM = 3;
  26. public const int COMPANY = 4;
  27. public const int EMAIL = 5;
  28. public const int HOST = 6;
  29. public const int NUM = 7;
  30. public const int P = 8;
  31. public const int HAS_DIGIT = 9;
  32. public const int ALPHA = 10;
  33. public const int LETTER = 11;
  34. public const int CJ = 12;
  35. public const int KOREAN = 13;
  36. public const int DIGIT = 14;
  37. public const int NOISE = 15;
  38. public const int DEFAULT = 0;
  39. 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>"};
  40. }
  41. }