public enum TrackStatus extends Enum<TrackStatus>
| Enum Constant and Description |
|---|
DROPPING |
INITIATING |
MAINTAINING |
TERMINATED |
| Modifier and Type | Method and Description |
|---|---|
static TrackStatus |
fromString(String value) |
String |
toString() |
static TrackStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TrackStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrackStatus INITIATING
public static final TrackStatus MAINTAINING
public static final TrackStatus DROPPING
public static final TrackStatus TERMINATED
public static TrackStatus[] values()
for (TrackStatus c : TrackStatus.values()) System.out.println(c);
public static TrackStatus 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 nullpublic static TrackStatus fromString(String value)
public String toString()
toString in class Enum<TrackStatus>Copyright © 2013–2022. All rights reserved.