public enum APIVersion extends Enum<APIVersion>
Enum Constant and Description |
---|
V_1_0_0 |
V_1_0_10 |
V_1_0_11 |
V_1_0_12 |
V_1_0_13 |
V_1_0_14 |
V_1_0_15 |
V_1_0_16 |
V_1_0_5 |
V_1_0_6 |
V_1_0_7 |
V_1_0_8 |
V_1_0_9 |
V_1_1_0 |
V_1_1_10 |
V_1_1_11 |
V_1_1_12 |
V_1_1_14 |
Modifier and Type | Method and Description |
---|---|
static APIVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static APIVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final APIVersion V_1_0_0
public static final APIVersion V_1_0_5
public static final APIVersion V_1_0_6
public static final APIVersion V_1_0_7
public static final APIVersion V_1_0_8
public static final APIVersion V_1_0_9
public static final APIVersion V_1_0_10
public static final APIVersion V_1_0_11
public static final APIVersion V_1_0_12
public static final APIVersion V_1_0_13
public static final APIVersion V_1_0_14
public static final APIVersion V_1_0_15
public static final APIVersion V_1_0_16
public static final APIVersion V_1_1_0
public static final APIVersion V_1_1_10
public static final APIVersion V_1_1_11
public static final APIVersion V_1_1_12
public static final APIVersion V_1_1_14
public static APIVersion[] values()
for (APIVersion c : APIVersion.values()) System.out.println(c);
public static APIVersion 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