public enum Status extends Enum<Status> implements Serializable
| Enum Constant and Description |
|---|
Deployed |
Disposed |
Expired |
Failed |
Finished |
Incomplete |
Pending |
Running |
Skipped |
Waiting |
| Modifier and Type | Method and Description |
|---|---|
static Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Status Running
public static final Status Failed
public static final Status Finished
public static final Status Skipped
public static final Status Pending
public static final Status Waiting
public static final Status Expired
public static final Status Deployed
public static final Status Disposed
public static final Status Incomplete
public static Status[] values()
for (Status c : Status.values()) System.out.println(c);
public static Status 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 © 2020. All Rights Reserved.