Package org.apache.lucene.util
Class Constants
- java.lang.Object
-
- org.apache.lucene.util.Constants
-
public final class Constants extends Object
Some useful constants.
-
-
Field Summary
Fields Modifier and Type Field Description static boolean
FREE_BSD
True iff running on FreeBSDstatic String
JAVA_VENDOR
The value ofSystem.getProperty("java.vendor")
.static String
JAVA_VERSION
Deprecated.To detect Java versions useRuntime.version()
static boolean
JRE_IS_64BIT
True iff running on a 64bit JVMstatic boolean
JRE_IS_MINIMUM_JAVA11
Deprecated.This constant is useless and alwaystrue
.static boolean
JRE_IS_MINIMUM_JAVA8
Deprecated.This constant is useless and alwaystrue
.static boolean
JRE_IS_MINIMUM_JAVA9
Deprecated.This constant is useless and alwaystrue
.static String
JVM_NAME
JVM vendor name.static String
JVM_SPEC_VERSION
Deprecated.To detect Java versions useRuntime.version()
static String
JVM_VENDOR
JVM vendor info.static String
JVM_VERSION
Deprecated.To detect Java versions useRuntime.version()
static boolean
LINUX
True iff running on Linux.static boolean
MAC_OS_X
True iff running on Mac OS Xstatic String
OS_ARCH
The value ofSystem.getProperty("os.arch")
.static String
OS_NAME
The value ofSystem.getProperty("os.name")
.static String
OS_VERSION
The value ofSystem.getProperty("os.version")
.static boolean
SUN_OS
True iff running on SunOS.static boolean
WINDOWS
True iff running on Windows.
-
-
-
Field Detail
-
JVM_VENDOR
public static final String JVM_VENDOR
JVM vendor info.
-
JVM_NAME
public static final String JVM_NAME
JVM vendor name.
-
JVM_VERSION
@Deprecated public static final String JVM_VERSION
Deprecated.To detect Java versions useRuntime.version()
Get the full version string of the current runtime.
-
JVM_SPEC_VERSION
@Deprecated public static final String JVM_SPEC_VERSION
Deprecated.To detect Java versions useRuntime.version()
Gets the specification version of the current runtime. This is the feature version converted to String.- See Also:
Runtime.Version.feature()
-
JAVA_VERSION
@Deprecated public static final String JAVA_VERSION
Deprecated.To detect Java versions useRuntime.version()
The value ofSystem.getProperty("java.version")
.
-
OS_NAME
public static final String OS_NAME
The value ofSystem.getProperty("os.name")
. *
-
LINUX
public static final boolean LINUX
True iff running on Linux.
-
WINDOWS
public static final boolean WINDOWS
True iff running on Windows.
-
SUN_OS
public static final boolean SUN_OS
True iff running on SunOS.
-
MAC_OS_X
public static final boolean MAC_OS_X
True iff running on Mac OS X
-
FREE_BSD
public static final boolean FREE_BSD
True iff running on FreeBSD
-
OS_ARCH
public static final String OS_ARCH
The value ofSystem.getProperty("os.arch")
.
-
OS_VERSION
public static final String OS_VERSION
The value ofSystem.getProperty("os.version")
.
-
JAVA_VENDOR
public static final String JAVA_VENDOR
The value ofSystem.getProperty("java.vendor")
.
-
JRE_IS_64BIT
public static final boolean JRE_IS_64BIT
True iff running on a 64bit JVM
-
JRE_IS_MINIMUM_JAVA8
@Deprecated public static final boolean JRE_IS_MINIMUM_JAVA8
Deprecated.This constant is useless and alwaystrue
. To detect Java versions useRuntime.version()
Always true.- See Also:
- Constant Field Values
-
JRE_IS_MINIMUM_JAVA9
@Deprecated public static final boolean JRE_IS_MINIMUM_JAVA9
Deprecated.This constant is useless and alwaystrue
. To detect Java versions useRuntime.version()
Always true.- See Also:
- Constant Field Values
-
JRE_IS_MINIMUM_JAVA11
@Deprecated public static final boolean JRE_IS_MINIMUM_JAVA11
Deprecated.This constant is useless and alwaystrue
. To detect Java versions useRuntime.version()
Always true.- See Also:
- Constant Field Values
-
-