public static enum CdjStatus.TrackSourceSlot extends Enum<CdjStatus.TrackSourceSlot>
| Enum Constant and Description |
|---|
CD_SLOT
The track was loaded from a CD.
|
COLLECTION
The track was loaded from a computer’s rekordbox collection over the network.
|
NO_TRACK
Nothing has been loaded.
|
SD_SLOT
The track was loaded from the Secure Digital media slot.
|
UNKNOWN
We saw a value that we did not recognize, so we don’t know where the track came from.
|
USB_SLOT
The track was loaded from the USB socket.
|
| Modifier and Type | Field and Description |
|---|---|
byte |
protocolValue
The value that represents this media source in a status update or dbserver request.
|
| Modifier and Type | Method and Description |
|---|---|
static CdjStatus.TrackSourceSlot |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CdjStatus.TrackSourceSlot[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CdjStatus.TrackSourceSlot NO_TRACK
public static final CdjStatus.TrackSourceSlot CD_SLOT
public static final CdjStatus.TrackSourceSlot SD_SLOT
public static final CdjStatus.TrackSourceSlot USB_SLOT
public static final CdjStatus.TrackSourceSlot COLLECTION
public static final CdjStatus.TrackSourceSlot UNKNOWN
public final byte protocolValue
public static CdjStatus.TrackSourceSlot[] values()
for (CdjStatus.TrackSourceSlot c : CdjStatus.TrackSourceSlot.values()) System.out.println(c);
public static CdjStatus.TrackSourceSlot 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.