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