public static enum Platform.JREVER extends java.lang.Enum<Platform.JREVER>
Enum Constant and Description |
---|
J4
Java 4 y anteriores.
|
J5
Java 5.
|
J6
Java 6.
|
J7
Java 7.
|
Modifier and Type | Method and Description |
---|---|
static Platform.JREVER |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Platform.JREVER[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Platform.JREVER J4
public static final Platform.JREVER J5
public static final Platform.JREVER J6
public static final Platform.JREVER J7
public static Platform.JREVER[] values()
for (Platform.JREVER c : Platform.JREVER.values()) System.out.println(c);
public static Platform.JREVER valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null