Enum TestNgTestWrapper.TestType
- java.lang.Object
-
- java.lang.Enum<TestNgTestWrapper.TestType>
-
- com.testomatio.reporter.core.extractor.wrapper.TestNgTestWrapper.TestType
-
- All Implemented Interfaces:
Serializable,Comparable<TestNgTestWrapper.TestType>
- Enclosing class:
- TestNgTestWrapper
public static enum TestNgTestWrapper.TestType extends Enum<TestNgTestWrapper.TestType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISABLED_TESTREGULAR_TEST
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TestNgTestWrapper.TestTypevalueOf(String name)Returns the enum constant of this type with the specified name.static TestNgTestWrapper.TestType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REGULAR_TEST
public static final TestNgTestWrapper.TestType REGULAR_TEST
-
DISABLED_TEST
public static final TestNgTestWrapper.TestType DISABLED_TEST
-
-
Method Detail
-
values
public static TestNgTestWrapper.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 (TestNgTestWrapper.TestType c : TestNgTestWrapper.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 TestNgTestWrapper.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
-
-