Serializable
, Comparable<TargetJdk>
public enum TargetJdk extends Enum<TargetJdk>
Enum Constant | Description |
---|---|
VERSION_1_3 |
|
VERSION_1_4 |
|
VERSION_1_5 |
|
VERSION_1_6 |
|
VERSION_1_7 |
|
VERSION_JSP |
Modifier and Type | Method | Description |
---|---|---|
String |
getName() |
|
String |
toString() |
|
static TargetJdk |
toVersion(Object value) |
Converts the given object into a
TargetJdk . |
static TargetJdk |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static TargetJdk[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TargetJdk VERSION_1_3
public static final TargetJdk VERSION_1_4
public static final TargetJdk VERSION_1_5
public static final TargetJdk VERSION_1_6
public static final TargetJdk VERSION_1_7
public static final TargetJdk VERSION_JSP
public static TargetJdk[] values()
for (TargetJdk c : TargetJdk.values()) System.out.println(c);
public static TargetJdk valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null@Nullable public static TargetJdk toVersion(@Nullable Object value) throws IllegalArgumentException
TargetJdk
.value
- An object whose toString() value is to be converted. May be null.IllegalArgumentException
- when the provided value cannot be converted.public String getName()