Constants.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. using System;
  17. namespace Lucene.Net.Util
  18. {
  19. /// <summary> Some useful constants.
  20. /// 
  21. /// </summary>
  22. /// <author>   Doug Cutting
  23. /// </author>
  24. /// <version>  $Id: Constants.java 189792 2005-06-09 18:58:30Z bmesser $
  25. /// 
  26. /// </version>
  27. public sealed class Constants
  28. {
  29. private Constants()
  30. {
  31. } // can't construct
  32. /// <summary>The value of <tt>System.getProperty("java.version")<tt>. *</summary>
  33. public static readonly System.String JAVA_VERSION = System.Configuration.ConfigurationSettings.AppSettings.Get("java.version");     // {{Aroush-1.9}}
  34. /// <summary>True iff this is Java version 1.1. </summary>
  35. public static readonly bool JAVA_1_1 = JAVA_VERSION.StartsWith("1.1.");
  36. /// <summary>True iff this is Java version 1.2. </summary>
  37. public static readonly bool JAVA_1_2 = JAVA_VERSION.StartsWith("1.2.");
  38. /// <summary>True iff this is Java version 1.3. </summary>
  39. public static readonly bool JAVA_1_3 = JAVA_VERSION.StartsWith("1.3.");
  40. /// <summary>The value of <tt>System.getProperty("os.name")<tt>. *</summary>
  41. public static readonly System.String OS_NAME = System.Environment.GetEnvironmentVariable("OS");
  42. /// <summary>True iff running on Linux. </summary>
  43. public static readonly bool LINUX = OS_NAME.StartsWith("Linux");
  44. /// <summary>True iff running on Windows. </summary>
  45. public static readonly bool WINDOWS = OS_NAME.StartsWith("Windows");
  46. /// <summary>True iff running on SunOS. </summary>
  47. public static readonly bool SUN_OS = OS_NAME.StartsWith("SunOS");
  48. }
  49. }