|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<JavaVersion>
org.gradle.api.JavaVersion
public enum JavaVersion
An enumeration of Java versions.
| Enum Constant Summary | |
|---|---|
VERSION_1_1
|
|
VERSION_1_2
|
|
VERSION_1_3
|
|
VERSION_1_4
|
|
VERSION_1_5
|
|
VERSION_1_6
|
|
VERSION_1_7
|
|
VERSION_1_8
|
|
| Method Summary | |
|---|---|
static JavaVersion |
current()
Returns the version of the current JVM. |
boolean |
isJava5()
|
boolean |
isJava5Compatible()
|
boolean |
isJava6()
|
boolean |
isJava6Compatible()
|
boolean |
isJava7()
|
boolean |
isJava7Compatible()
|
boolean |
isJava8Compatible()
|
String |
toString()
|
static JavaVersion |
toVersion(Object value)
Converts the given object into a JavaVersion. |
static JavaVersion |
valueOf(String name)
Returns 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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final JavaVersion VERSION_1_1
public static final JavaVersion VERSION_1_2
public static final JavaVersion VERSION_1_3
public static final JavaVersion VERSION_1_4
public static final JavaVersion VERSION_1_5
public static final JavaVersion VERSION_1_6
public static final JavaVersion VERSION_1_7
public static final JavaVersion VERSION_1_8
| Method Detail |
|---|
public static JavaVersion[] values()
for (JavaVersion c : JavaVersion.values()) System.out.println(c);
public static JavaVersion valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
public static JavaVersion toVersion(Object value)
throws IllegalArgumentException
JavaVersion.
value - An object whose toString() value is to be converted. May be null.
IllegalArgumentException - when the provided value cannot be converted.public static JavaVersion current()
public boolean isJava5()
public boolean isJava6()
public boolean isJava7()
public boolean isJava5Compatible()
public boolean isJava6Compatible()
public boolean isJava7Compatible()
public boolean isJava8Compatible()
public String toString()
toString in class Enum<JavaVersion>
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||