Package org.testfx.internal
Enum Class JavaVersionAdapter.JavaVersion
- All Implemented Interfaces:
Serializable
,Comparable<JavaVersionAdapter.JavaVersion>
,Constable
- Enclosing class:
JavaVersionAdapter
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
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
private boolean
isJava8()
boolean
toString()
Returns the enum constant of this class with the specified name.static JavaVersionAdapter.JavaVersion[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
VERSION_1_1
-
VERSION_1_2
-
VERSION_1_3
-
VERSION_1_4
-
VERSION_1_5
-
VERSION_1_6
-
VERSION_1_7
-
VERSION_1_8
-
VERSION_1_9
-
VERSION_1_10
-
VERSION_11
-
VERSION_HIGHER
-
-
Field Details
-
FIRST_MAJOR_VERSION_ORDINAL
private static final int FIRST_MAJOR_VERSION_ORDINAL- See Also:
-
versionName
-
-
Constructor Details
-
JavaVersion
private JavaVersion()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getMajorVersion
-
isJava8
private boolean isJava8() -
isJava9Compatible
public boolean isJava9Compatible() -
isJava11Compatible
public boolean isJava11Compatible() -
toString
- Overrides:
toString
in classEnum<JavaVersionAdapter.JavaVersion>
-