public static enum CdjStatus.PlayState3 extends Enum<CdjStatus.PlayState3>
| Enum Constant and Description |
|---|
FORWARD_CDJ
The player is playing in Forward mode with jog mode set to CDJ.
|
FORWARD_VINYL
The player is playing in Forward mode with jog mode set to Vinyl.
|
NO_TRACK
No track has been loaded.
|
PAUSED_OR_REVERSE
The player is paused or playing in Reverse mode.
|
UNKNOWN
We received a value that we did not recognize, 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.PlayState3 |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CdjStatus.PlayState3[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CdjStatus.PlayState3 NO_TRACK
public static final CdjStatus.PlayState3 PAUSED_OR_REVERSE
public static final CdjStatus.PlayState3 FORWARD_VINYL
public static final CdjStatus.PlayState3 FORWARD_CDJ
public static final CdjStatus.PlayState3 UNKNOWN
public final byte protocolValue
public static CdjStatus.PlayState3[] values()
for (CdjStatus.PlayState3 c : CdjStatus.PlayState3.values()) System.out.println(c);
public static CdjStatus.PlayState3 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.