Package com.boomi.connector.testutil
Enum APIVersion
- java.lang.Object
-
- java.lang.Enum<APIVersion>
-
- com.boomi.connector.testutil.APIVersion
-
- All Implemented Interfaces:
Serializable
,Comparable<APIVersion>
public enum APIVersion extends Enum<APIVersion>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
V_1_0_0
public static final APIVersion V_1_0_0
-
V_1_0_5
public static final APIVersion V_1_0_5
-
V_1_0_6
public static final APIVersion V_1_0_6
-
V_1_0_7
public static final APIVersion V_1_0_7
-
V_1_0_8
public static final APIVersion V_1_0_8
-
V_1_0_9
public static final APIVersion V_1_0_9
-
V_1_0_10
public static final APIVersion V_1_0_10
-
V_1_0_11
public static final APIVersion V_1_0_11
-
V_1_0_12
public static final APIVersion V_1_0_12
-
V_1_0_13
public static final APIVersion V_1_0_13
-
V_1_0_14
public static final APIVersion V_1_0_14
-
V_1_0_15
public static final APIVersion V_1_0_15
-
V_1_0_16
public static final APIVersion V_1_0_16
-
V_1_1_0
public static final APIVersion V_1_1_0
-
V_1_1_10
public static final APIVersion V_1_1_10
-
V_1_1_11
public static final APIVersion V_1_1_11
-
V_1_1_12
public static final APIVersion V_1_1_12
-
V_1_1_14
public static final APIVersion V_1_1_14
-
-
Method Detail
-
values
public static APIVersion[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (APIVersion c : APIVersion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static APIVersion valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-