TokenType.cs
上传用户:sex100000
上传日期:2013-11-09
资源大小:1377k
文件大小:3k
源码类别:

GIS编程

开发平台:

C#

  1. // Copyright 2005, 2006 - Morten Nielsen (www.iter.dk)
  2. //
  3. // This file is part of SharpMap.
  4. // SharpMap is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU Lesser General Public License as published by
  6. // the Free Software Foundation; either version 2 of the License, or
  7. // (at your option) any later version.
  8. // 
  9. // SharpMap is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. // GNU Lesser General Public License for more details.
  13. // You should have received a copy of the GNU Lesser General Public License
  14. // along with SharpMap; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
  16. // SOURCECODE IS MODIFIED FROM ANOTHER WORK AND IS ORIGINALLY BASED ON GeoTools.NET:
  17. /*
  18.  *  Copyright (C) 2002 Urban Science Applications, Inc. 
  19.  *
  20.  *  This library is free software; you can redistribute it and/or
  21.  *  modify it under the terms of the GNU Lesser General Public
  22.  *  License as published by the Free Software Foundation; either
  23.  *  version 2.1 of the License, or (at your option) any later version.
  24.  *
  25.  *  This library is distributed in the hope that it will be useful,
  26.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  27.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  28.  *  Lesser General Public License for more details.
  29.  *
  30.  *  You should have received a copy of the GNU Lesser General Public
  31.  *  License along with this library; if not, write to the Free Software
  32.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  33.  *
  34.  */
  35. #region Using
  36. using System;
  37. #endregion
  38. namespace SharpMap.Converters.WellKnownText
  39. {
  40. /// <summary>
  41. /// Represents the type of token created by the StreamTokenizer class.
  42. /// </summary>
  43. internal enum TokenType
  44. {
  45. /// <summary>
  46. /// Indicates that the token is a word.
  47. /// </summary>
  48. Word,
  49. /// <summary>
  50. /// Indicates that the token is a number. 
  51. /// </summary>
  52. Number,
  53. /// <summary>
  54. /// Indicates that the end of line has been read. The field can only have this value if the eolIsSignificant method has been called with the argument true. 
  55. /// </summary>
  56. Eol,
  57. /// <summary>
  58. /// Indicates that the end of the input stream has been reached.
  59. /// </summary>
  60. Eof,
  61. /// <summary>
  62. /// Indictaes that the token is white space (space, tab, newline).
  63. /// </summary>
  64. Whitespace,
  65. /// <summary>
  66. /// Characters that are not whitespace, numbers, etc...
  67. /// </summary>
  68. Symbol
  69. }
  70. }