public static enum TestCaseDescriptor.Result extends Enum<TestCaseDescriptor.Result>
Modifier and Type | Method and Description |
---|---|
static TestCaseDescriptor.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestCaseDescriptor.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestCaseDescriptor.Result SUCCESS
public static final TestCaseDescriptor.Result FAILURE
public static final TestCaseDescriptor.Result ERROR
public static final TestCaseDescriptor.Result SKIPPED
public static TestCaseDescriptor.Result[] values()
for (TestCaseDescriptor.Result c : TestCaseDescriptor.Result.values()) System.out.println(c);
public static TestCaseDescriptor.Result 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 nullCopyright © 2016 buschmais GbR. All rights reserved.