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