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