Enum TestCase.Type
- java.lang.Object
-
- java.lang.Enum<TestCase.Type>
-
- dev.cdevents.models.testcaserun.started.TestCase.Type
-
- All Implemented Interfaces:
Serializable,Comparable<TestCase.Type>
- Enclosing class:
- TestCase
@Generated("jsonschema2pojo") public static enum TestCase.Type extends Enum<TestCase.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPLIANCEE_2_EFUNCTIONALINTEGRATIONOTHERPERFORMANCESECURITYUNIT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TestCase.TypefromValue(String value)StringtoString()Stringvalue()static TestCase.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static TestCase.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PERFORMANCE
public static final TestCase.Type PERFORMANCE
-
FUNCTIONAL
public static final TestCase.Type FUNCTIONAL
-
UNIT
public static final TestCase.Type UNIT
-
SECURITY
public static final TestCase.Type SECURITY
-
COMPLIANCE
public static final TestCase.Type COMPLIANCE
-
INTEGRATION
public static final TestCase.Type INTEGRATION
-
E_2_E
public static final TestCase.Type E_2_E
-
OTHER
public static final TestCase.Type OTHER
-
-
Method Detail
-
values
public static TestCase.Type[] 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 (TestCase.Type c : TestCase.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TestCase.Type 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<TestCase.Type>
-
value
public String value()
-
fromValue
public static TestCase.Type fromValue(String value)
-
-