public static enum CdjStatus.TrackType extends Enum<CdjStatus.TrackType>
| Enum Constant and Description |
|---|
CD_DIGITAL_AUDIO
The track was loaded from an audio CD, and so has not been analyzed for beat grid and waveforms.
|
NO_TRACK
No track has been loaded.
|
REKORDBOX
The track was loaded from a rekordbox database, and has been analyzed for beat grid and waveforms.
|
UNANALYZED
The track was loaded from digital media, but was not from rekordbox, and so has not been analyzed
for beat grid and waveforms.
|
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 track type in a status update.
|
| Modifier and Type | Method and Description |
|---|---|
static CdjStatus.TrackType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CdjStatus.TrackType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CdjStatus.TrackType NO_TRACK
public static final CdjStatus.TrackType REKORDBOX
public static final CdjStatus.TrackType UNANALYZED
public static final CdjStatus.TrackType CD_DIGITAL_AUDIO
public static final CdjStatus.TrackType UNKNOWN
public final byte protocolValue
public static CdjStatus.TrackType[] values()
for (CdjStatus.TrackType c : CdjStatus.TrackType.values()) System.out.println(c);
public static CdjStatus.TrackType 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.