public class JavaVersion
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static boolean |
isHotspot
Flag indicating if the virtual machine is HotSpot.
|
static boolean |
isJ9
Flag indicating if the virtual machine is J9.
|
static org.apache.log4j.Logger |
log
Logger for the JavaVersion class.
|
static int |
major
The major version number of the Java runtime environment.
|
static int |
minor
The minor version number of the Java runtime environment.
|
static java.lang.String |
versionString
The version string of the Java runtime environment.
|
static int |
VM_IBM_J9
Constant representing the IBM J9 virtual machine.
|
static int |
VM_OPENJDK_HOTSPOT
Constant representing the OpenJDK HotSpot virtual machine.
|
static int |
VM_OPENJDK_J9
Constant representing the OpenJDK J9 virtual machine.
|
static int |
VM_ORACLE_HOTSPOT
Constant representing the Oracle HotSpot virtual machine.
|
static int |
VM_UNKNOWN
Constant representing an unknown virtual machine.
|
static int |
vmImpl
The virtual machine implementation type.
|
static java.lang.String[] |
vmTitles
Array of virtual machine titles corresponding to the VM constants.
|
Constructor and Description |
---|
JavaVersion() |
Modifier and Type | Method and Description |
---|---|
static boolean |
atLeast(int reqMajor)
Checks if the Java version is at least the specified version.
|
static boolean |
atLeast(int reqMajor,
int reqMinor)
Checks if the Java version is at least the specified version.
|
static boolean |
atLeast(int reqMajor,
int reqMinor,
int needsVmImpl)
Checks if the Java version is at least the specified version.
|
static boolean |
atLeast(int reqMajor,
int reqMinor,
int needsVmImpl,
boolean needsHotspotImpl)
Checks if the Java version is at least the specified version.
|
static boolean |
is(int reqMajor)
Checks if the Java version matches the specified version.
|
static boolean |
is(int reqMajor,
int reqMinor)
Checks if the Java version matches the specified version.
|
static boolean |
is(int reqMajor,
int reqMinor,
int needsVmImpl)
Checks if the Java version matches the specified version.
|
static boolean |
is(int reqMajor,
int reqMinor,
int needsVmImpl,
boolean needsHotspotImpl)
Checks if the Java version matches the specified version.
|
static boolean |
needsExplicitGCCallToCompressHeap()
Determines whether an explicit garbage collection call is needed to compress the heap.
|
public static final org.apache.log4j.Logger log
public static final int VM_UNKNOWN
public static final int VM_ORACLE_HOTSPOT
public static final int VM_IBM_J9
public static final int VM_OPENJDK_HOTSPOT
public static final int VM_OPENJDK_J9
public static final java.lang.String[] vmTitles
public static java.lang.String versionString
public static int major
public static int minor
public static int vmImpl
public static boolean isHotspot
public static boolean isJ9
public static boolean atLeast(int reqMajor)
reqMajor
- The required major version.public static boolean atLeast(int reqMajor, int reqMinor)
reqMajor
- The required major version.reqMinor
- The required minor version.public static boolean atLeast(int reqMajor, int reqMinor, int needsVmImpl)
reqMajor
- The required major version.reqMinor
- The required minor version.needsVmImpl
- The required virtual machine implementation type.public static boolean atLeast(int reqMajor, int reqMinor, int needsVmImpl, boolean needsHotspotImpl)
reqMajor
- The required major version.reqMinor
- The required minor version.needsVmImpl
- The required virtual machine implementation type.needsHotspotImpl
- Indicates whether HotSpot implementation is required.public static boolean is(int reqMajor)
reqMajor
- The required major version.public static boolean is(int reqMajor, int reqMinor)
reqMajor
- The required major version.reqMinor
- The required minor version.public static boolean is(int reqMajor, int reqMinor, int needsVmImpl)
reqMajor
- The required major version.reqMinor
- The required minor version.needsVmImpl
- The required virtual machine implementation type.public static boolean is(int reqMajor, int reqMinor, int needsVmImpl, boolean needsHotspotImpl)
reqMajor
- The required major version.reqMinor
- The required minor version.needsVmImpl
- The required virtual machine implementation type.needsHotspotImpl
- Indicates whether HotSpot implementation is required.public static boolean needsExplicitGCCallToCompressHeap()
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.