Package org.eclipse.jetty.util
Class JavaVersion
- java.lang.Object
-
- org.eclipse.jetty.util.JavaVersion
-
public class JavaVersion extends Object
Java Version Utility class.Parses java versions to extract a consistent set of version parts
-
-
Field Summary
Fields Modifier and Type Field Description static StringJAVA_TARGET_PLATFORMContext attribute that can be set to target a different version of the jvm than the current runtime.static JavaVersionVERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description intgetMajor()Returns the major number version, such as1for JDK 1.8.0_92 and9for JDK 9.2.4.intgetMicro()Returns the micro number version (aka security number), such as0for JDK 1.8.0_92 and4for JDK 9.2.4.intgetMinor()Returns the minor number version, such as8for JDK 1.8.0_92 and2for JDK 9.2.4.intgetPlatform()Returns the Java Platform version, such as8for JDK 1.8.0_92 and9for JDK 9.2.4.StringgetSuffix()Deprecated.intgetUpdate()Deprecated.StringgetVersion()static JavaVersionparse(String v)StringtoString()
-
-
-
Field Detail
-
JAVA_TARGET_PLATFORM
public static final String JAVA_TARGET_PLATFORM
Context attribute that can be set to target a different version of the jvm than the current runtime. Acceptable values should correspond to those returned by JavaVersion.getPlatform().- See Also:
- Constant Field Values
-
VERSION
public static final JavaVersion VERSION
-
-
Method Detail
-
parse
public static JavaVersion parse(String v)
-
getVersion
public String getVersion()
- Returns:
- the string from which this JavaVersion was created
-
getPlatform
public int getPlatform()
Returns the Java Platform version, such as
8for JDK 1.8.0_92 and9for JDK 9.2.4.- Returns:
- the Java Platform version
-
getMajor
public int getMajor()
Returns the major number version, such as
1for JDK 1.8.0_92 and9for JDK 9.2.4.- Returns:
- the major number version
-
getMinor
public int getMinor()
Returns the minor number version, such as
8for JDK 1.8.0_92 and2for JDK 9.2.4.- Returns:
- the minor number version
-
getMicro
public int getMicro()
Returns the micro number version (aka security number), such as
0for JDK 1.8.0_92 and4for JDK 9.2.4.- Returns:
- the micro number version
-
getUpdate
@Deprecated public int getUpdate()
Deprecated.Returns the update number version, such as
92for JDK 1.8.0_92 and0for JDK 9.2.4.- Returns:
- the update number version
-
getSuffix
@Deprecated public String getSuffix()
Deprecated.Returns the remaining string after the version numbers, such as
-internalfor JDK 1.8.0_92-internal and-eafor JDK 9-ea, or+13for JDK 9.2.4+13.- Returns:
- the remaining string after the version numbers
-
-