public static enum CdjStatus.PlayState2 extends Enum<CdjStatus.PlayState2>
| Enum Constant and Description |
|---|
MOVING
The player is moving through a track.
|
STOPPED
The player is stopped.
|
UNKNOWN
We saw an unknown value, so we don’t know what it means.
|
| Modifier and Type | Field and Description |
|---|---|
byte |
protocolValue
The value that represents this play state in a status update.
|
| Modifier and Type | Method and Description |
|---|---|
static CdjStatus.PlayState2 |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CdjStatus.PlayState2[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CdjStatus.PlayState2 MOVING
public static final CdjStatus.PlayState2 STOPPED
public static final CdjStatus.PlayState2 UNKNOWN
public final byte protocolValue
public static CdjStatus.PlayState2[] values()
for (CdjStatus.PlayState2 c : CdjStatus.PlayState2.values()) System.out.println(c);
public static CdjStatus.PlayState2 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 © 2016–2018 Deep Symmetry, LLC. All rights reserved.