Enum JavaVersion
- All Implemented Interfaces:
Serializable, Comparable<JavaVersion>, Constable
An enumeration of Java versions.
Before 9: http://www.oracle.com/technetwork/java/javase/versioning-naming-139433.html
9+: http://openjdk.java.net/jeps/223
- Since:
- 0.7
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionJava 11 major version.Java 12 major version.Java 13 major version.Java 14 major version.Java 15 major version.Java 16 major version.Java 17 major version.Java 18 major version.Java 19 major version.Java 20 major version.Java 21 major version.Java 22 major version.Java 23 major version.Java 24 major version.Java 25 major version.Java 26 major version.Java 27 major version.Java 28 major version.Java 29 major version.Java 30 major version.Java 31 major version.Higher version of Java. -
Method Summary
Modifier and TypeMethodDescriptionstatic JavaVersioncurrent()Returns the version of the current JVM.static JavaVersionforClass(byte[] classData) For class.static JavaVersionforClassVersion(int classVersion) For class version.Returns the major version.booleanisCompatibleWith(JavaVersion otherVersion) Returns if this version is compatible with the given versionbooleanisJava10()Returns whether java10 is set.booleanReturns whether java10 compatible is set.booleanisJava11()Returns if the version is Java 11.booleanReturns if the version is Java 11 compatible.booleanisJava12()Returns if the version is Java 12.booleanReturns if the version is Java 12 compatible.booleanisJava5()Returns whether java5 is set.booleanReturns whether java5 compatible is set.booleanisJava6()Returns whether java6 is set.booleanReturns whether java6 compatible is set.booleanisJava7()Returns whether java7 is set.booleanReturns whether java7 compatible is set.booleanisJava8()Returns whether java8 is set.booleanReturns whether java8 compatible is set.booleanisJava9()Returns whether java9 is set.booleanReturns whether java9 compatible is set.(package private) static voidintReturns the JVM class file major version for this Java version.toString()static JavaVersionConverts the given object into aJavaVersion.static JavaVersionReturns the enum constant of this type with the specified name.static JavaVersion[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
VERSION_1_1
- Since:
- 0.7
-
VERSION_1_2
- Since:
- 0.7
-
VERSION_1_3
- Since:
- 0.7
-
VERSION_1_4
- Since:
- 0.7
-
VERSION_1_5
- Since:
- 0.7
-
VERSION_1_6
- Since:
- 0.7
-
VERSION_1_7
- Since:
- 1.0
-
VERSION_1_8
- Since:
- 1.1
-
VERSION_1_9
- Since:
- 1.11
-
VERSION_1_10
- Since:
- 4.1
-
VERSION_11
-
VERSION_12
-
VERSION_13
-
VERSION_14
-
VERSION_15
-
VERSION_16
-
VERSION_17
-
VERSION_18
-
VERSION_19
-
VERSION_20
-
VERSION_21
-
VERSION_22
-
VERSION_23
-
VERSION_24
-
VERSION_25
-
VERSION_26
-
VERSION_27
-
VERSION_28
Java 28 major version. Not officially supported by Gradle. Use at your own risk.- Since:
- 8.14
-
VERSION_29
Java 29 major version. Not officially supported by Gradle. Use at your own risk.- Since:
- 9.1.0
-
VERSION_30
Java 30 major version. Not officially supported by Gradle. Use at your own risk.- Since:
- 9.4.0
-
VERSION_31
Java 31 major version. Not officially supported by Gradle. Use at your own risk.- Since:
- 9.8.0
-
VERSION_HIGHER
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toVersion
Converts the given object into aJavaVersion.- Parameters:
value- An object whose toString() value is to be converted. May be null.- Returns:
- The version, or null if the provided value is null.
- Throws:
IllegalArgumentException- when the provided value cannot be converted.- Since:
- 0.7
-
current
Returns the version of the current JVM.- Returns:
- The version of the current JVM.
- Since:
- 1.0
-
resetCurrent
static void resetCurrent() -
forClassVersion
-
toClassVersion
public int toClassVersion()Returns the JVM class file major version for this Java version.- Returns:
- The JVM class file major version for this Java version.
- Since:
- 9.5.0
-
forClass
-
isJava5
public boolean isJava5()Returns whether java5 is set.- Since:
- 1.1
-
isJava6
public boolean isJava6()Returns whether java6 is set.- Since:
- 1.1
-
isJava7
public boolean isJava7()Returns whether java7 is set.- Since:
- 1.1
-
isJava8
public boolean isJava8()Returns whether java8 is set.- Since:
- 4.7
-
isJava9
public boolean isJava9()Returns whether java9 is set.- Since:
- 4.7
-
isJava10
public boolean isJava10()Returns whether java10 is set.- Since:
- 4.7
-
isJava11
public boolean isJava11()Returns if the version is Java 11.- Since:
- 4.7
-
isJava12
public boolean isJava12()Returns if the version is Java 12.- Since:
- 5.0
-
isJava5Compatible
public boolean isJava5Compatible()Returns whether java5 compatible is set.- Since:
- 1.1
-
isJava6Compatible
public boolean isJava6Compatible()Returns whether java6 compatible is set.- Since:
- 1.1
-
isJava7Compatible
public boolean isJava7Compatible()Returns whether java7 compatible is set.- Since:
- 1.1
-
isJava8Compatible
public boolean isJava8Compatible()Returns whether java8 compatible is set.- Since:
- 1.1
-
isJava9Compatible
public boolean isJava9Compatible()Returns whether java9 compatible is set.- Since:
- 1.11
-
isJava10Compatible
public boolean isJava10Compatible()Returns whether java10 compatible is set.- Since:
- 4.1
-
isJava11Compatible
public boolean isJava11Compatible()Returns if the version is Java 11 compatible.- Since:
- 4.7
-
isJava12Compatible
public boolean isJava12Compatible()Returns if the version is Java 12 compatible.- Since:
- 5.0
-
isCompatibleWith
Returns if this version is compatible with the given version- Since:
- 6.0
-
toString
- Overrides:
toStringin classEnum<JavaVersion>
-
getMajorVersion
-