public enum ProcessingStatus extends Enum<ProcessingStatus>
| Enum Constant and Description |
|---|
ERROR
An error occurred during the test suite processing that does not terminate processing.
|
FATAL_ERROR
An error occurred during the test suite processing that terminates processing.
|
FINISHED
Suite processing has finished successfully.
|
PROGRESS
The test suite is being processed by system.
|
UNKNOWN
Suite status could not be established.
|
| Modifier and Type | Method and Description |
|---|---|
static ProcessingStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessingStatus PROGRESS
public static final ProcessingStatus ERROR
public static final ProcessingStatus FATAL_ERROR
public static final ProcessingStatus FINISHED
public static final ProcessingStatus UNKNOWN
public static ProcessingStatus[] values()
for (ProcessingStatus c : ProcessingStatus.values()) System.out.println(c);
public static ProcessingStatus 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 © 2013–2018 Cognifide. All rights reserved.