Package io.apiman.manager.test.util
Enum ManagerTestUtils.TestType
- java.lang.Object
-
- java.lang.Enum<ManagerTestUtils.TestType>
-
- io.apiman.manager.test.util.ManagerTestUtils.TestType
-
- All Implemented Interfaces:
Serializable,Comparable<ManagerTestUtils.TestType>
- Enclosing class:
- ManagerTestUtils
public static enum ManagerTestUtils.TestType extends Enum<ManagerTestUtils.TestType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ManagerTestUtils.TestTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ManagerTestUtils.TestType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
jpa
public static final ManagerTestUtils.TestType jpa
-
es
public static final ManagerTestUtils.TestType es
-
-
Method Detail
-
values
public static ManagerTestUtils.TestType[] 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 (ManagerTestUtils.TestType c : ManagerTestUtils.TestType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ManagerTestUtils.TestType 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
-
-