1 package org.apache.lucene.util; 2 3 18 19 25 26 public final class Constants { 27 private Constants() {} 29 30 public static final String JAVA_VERSION = System.getProperty("java.version"); 31 32 public static final boolean JAVA_1_1 = JAVA_VERSION.startsWith("1.1."); 33 34 public static final boolean JAVA_1_2 = JAVA_VERSION.startsWith("1.2."); 35 36 public static final boolean JAVA_1_3 = JAVA_VERSION.startsWith("1.3."); 37 38 39 public static final String OS_NAME = System.getProperty("os.name"); 40 41 public static final boolean LINUX = OS_NAME.startsWith("Linux"); 42 43 public static final boolean WINDOWS = OS_NAME.startsWith("Windows"); 44 45 public static final boolean SUN_OS = OS_NAME.startsWith("SunOS"); 46 } 47 | Popular Tags |