Skip navigation links
A B C D F G I M N O P R S T U V 

A

addBeatListener(BeatListener) - Static method in class org.deepsymmetry.beatlink.BeatFinder
Adds the specified beat listener to receive beat announcements when DJ Link devices broadcast them on the network.
addDeviceAnnouncementListener(DeviceAnnouncementListener) - Static method in class org.deepsymmetry.beatlink.DeviceFinder
Adds the specified device announcement listener to receive device announcements when DJ Link devices are found on or leave the network.
addMasterListener(MasterListener) - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Adds the specified master listener to receive device updates when there are changes related to the tempo master.
address - Variable in class org.deepsymmetry.beatlink.DeviceUpdate
The address from which this device update was received.
addressToLong(InetAddress) - Static method in class org.deepsymmetry.beatlink.Util
Converts the bytes that make up an internet address into the corresponding integer value to make it easier to perform bit-masking operations on them.
addUpdateListener(DeviceUpdateListener) - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Adds the specified device update listener to receive device updates whenever they come in.
ANNOUNCEMENT_PORT - Static variable in class org.deepsymmetry.beatlink.DeviceFinder
The port to which devices broadcast announcement messages to report their presence on the network.

B

Beat - Class in org.deepsymmetry.beatlink
A device update that announces the start of a new beat on a DJ Link network.
Beat(DatagramPacket) - Constructor for class org.deepsymmetry.beatlink.Beat
Constructor sets all the immutable interpreted fields based on the packet content.
BEAT_PORT - Static variable in class org.deepsymmetry.beatlink.BeatFinder
The port to which devices broadcast beat messages.
BeatFinder - Class in org.deepsymmetry.beatlink
Watches for devices to report new beats by broadcasting beat packets on port 50001, and passes them on to registered listeners.
BeatFinder() - Constructor for class org.deepsymmetry.beatlink.BeatFinder
 
BeatListener - Interface in org.deepsymmetry.beatlink
The listener interface for receiving beat announcements.
bytesToNumber(byte[], int, int) - Static method in class org.deepsymmetry.beatlink.Util
Reconstructs a number that is represented by more than one byte in a network packet in big-endian order.

C

CdjStatus - Class in org.deepsymmetry.beatlink
Represents a status update sent by a CDJ (or perhaps other player) on a DJ Link network.
CdjStatus(DatagramPacket) - Constructor for class org.deepsymmetry.beatlink.CdjStatus
Constructor sets all the immutable interpreted fields based on the packet content.
CdjStatus.PlayState1 - Enum in org.deepsymmetry.beatlink
The possible values of the first play state found in the packet, labeled P1 in Figure 11 of the Packet Analysis document.
CdjStatus.PlayState2 - Enum in org.deepsymmetry.beatlink
The possible values of the second play state found in the packet, labeled P2 in Figure 11 of the Packet Analysis document.
CdjStatus.PlayState3 - Enum in org.deepsymmetry.beatlink
The possible values of the third play state found in the packet, labeled P3 in Figure 11 of the Packet Analysis document.
currentDevices() - Static method in class org.deepsymmetry.beatlink.DeviceFinder
Get the set of DJ Link devices which currently can be seen on the network.

D

DeviceAnnouncement - Class in org.deepsymmetry.beatlink
Represents a device announcement seen on a DJ Link network.
DeviceAnnouncement(DatagramPacket) - Constructor for class org.deepsymmetry.beatlink.DeviceAnnouncement
Constructor sets all the immutable interpreted fields based on the packet content.
DeviceAnnouncementAdapter - Class in org.deepsymmetry.beatlink
An abstract adapter class for receiving device announcements.
DeviceAnnouncementAdapter() - Constructor for class org.deepsymmetry.beatlink.DeviceAnnouncementAdapter
 
DeviceAnnouncementListener - Interface in org.deepsymmetry.beatlink
The listener interface for receiving device announcements.
DeviceFinder - Class in org.deepsymmetry.beatlink
Watches for devices to report their presence by broadcasting announcement packets on port 50000, and keeps a list of the devices that have been seen, and the network address on which they were seen.
deviceFound(DeviceAnnouncement) - Method in class org.deepsymmetry.beatlink.DeviceAnnouncementAdapter
 
deviceFound(DeviceAnnouncement) - Method in interface org.deepsymmetry.beatlink.DeviceAnnouncementListener
Invoked when a new DJ Link device is heard from on the network.
deviceLost(DeviceAnnouncement) - Method in class org.deepsymmetry.beatlink.DeviceAnnouncementAdapter
 
deviceLost(DeviceAnnouncement) - Method in interface org.deepsymmetry.beatlink.DeviceAnnouncementListener
Invoked when a DJ Link device is no longer seen on the network.
deviceName - Variable in class org.deepsymmetry.beatlink.DeviceUpdate
The name of the device sending the update.
deviceNumber - Variable in class org.deepsymmetry.beatlink.DeviceUpdate
The player/device number sending the update.
DeviceUpdate - Class in org.deepsymmetry.beatlink
Represents a device status update seen on a DJ Link network.
DeviceUpdate(DatagramPacket, String, int) - Constructor for class org.deepsymmetry.beatlink.DeviceUpdate
Constructor sets all the immutable interpreted fields based on the packet content.
DeviceUpdateListener - Interface in org.deepsymmetry.beatlink
The listener interface for receiving detailed updates from all devices.

F

formatCueCountdown() - Method in class org.deepsymmetry.beatlink.CdjStatus
Format a cue countdown indicator in the same way as the CDJ would at this point in the track.

G

getAddress() - Method in class org.deepsymmetry.beatlink.DeviceAnnouncement
Get the address on which this device was seen.
getAddress() - Method in class org.deepsymmetry.beatlink.DeviceUpdate
Get the address of the device from which this update was seen.
getAnnounceInterval() - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Get the interval, in milliseconds, at which we broadcast presence announcements on the network to pose as a virtual CDJ.
getBeatListeners() - Static method in class org.deepsymmetry.beatlink.BeatFinder
Get the set of beat listeners that are currently registered.
getBeatNumber() - Method in class org.deepsymmetry.beatlink.CdjStatus
Identify the beat of the track that being played.
getBeatWithinBar() - Method in class org.deepsymmetry.beatlink.Beat
Get the position within a measure of music at which this beat falls (a value from 1 to 4, where 1 represents the down beat).
getBeatWithinBar() - Method in class org.deepsymmetry.beatlink.CdjStatus
Get the position within a measure of music at which the most recent beat occurred (a value from 1 to 4, where 1 represents the down beat).
getBeatWithinBar() - Method in class org.deepsymmetry.beatlink.DeviceUpdate
Get the position within a measure of music at which this beat falls (a value from 1 to 4, where 1 represents the down beat).
getBeatWithinBar() - Method in class org.deepsymmetry.beatlink.MixerStatus
Get the position within a measure of music at which the most recent beat occurred (a value from 1 to 4, where 1 represents the down beat).
getBpm() - Method in class org.deepsymmetry.beatlink.Beat
Get the track BPM at the time of the beat.
getBpm() - Method in class org.deepsymmetry.beatlink.CdjStatus
Get the track BPM at the time of the update.
getBpm() - Method in class org.deepsymmetry.beatlink.MixerStatus
Get the BPM at the time of the update.
getBroadcastAddress() - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Return the broadcast address used to reach the DJ Link network.
getCueCountdown() - Method in class org.deepsymmetry.beatlink.CdjStatus
How many beats away is the next cue point in the track? If there is no saved cue point after the current play location, or if it is further than 64 bars ahead, the value 511 is returned (and the CDJ will display "--.- bars").
getDeviceAnnouncementListeners() - Static method in class org.deepsymmetry.beatlink.DeviceFinder
Get the set of device announcement listeners that are currently registered.
getDeviceName() - Method in class org.deepsymmetry.beatlink.DeviceUpdate
Get the name reported by the device sending the update.
getDeviceName() - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Get the name to be used in announcing our presence on the network.
getDeviceNumber() - Method in class org.deepsymmetry.beatlink.DeviceUpdate
Get the player/device number reporting the update.
getDeviceNumber() - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Get the device number that is used when sending presence announcements on the network to pose as a virtual CDJ.
getEffectiveTempo() - Method in class org.deepsymmetry.beatlink.Beat
 
getEffectiveTempo() - Method in class org.deepsymmetry.beatlink.CdjStatus
 
getEffectiveTempo() - Method in class org.deepsymmetry.beatlink.DeviceUpdate
Get the effective tempo reflected by this update, which reflect both its track BPM and pitch as needed.
getEffectiveTempo() - Method in class org.deepsymmetry.beatlink.MixerStatus
 
getFirmwareVersion() - Method in class org.deepsymmetry.beatlink.CdjStatus
Return the firmware version string reported in the packet.
getHardwareAddress() - Method in class org.deepsymmetry.beatlink.DeviceAnnouncement
Get the MAC address reported by the device.
getLatestAnnouncementFrom(int) - Static method in class org.deepsymmetry.beatlink.DeviceFinder
Find and return the device announcement that was most recently received from a device identifying itself with the specified device number, if any.
getLatestStatus() - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Get the most recent status we have seen from all devices that are recent enough to be considered still active on the network.
getLatestStatusFor(DeviceUpdate) - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Look up the most recent status we have seen for a device, given another update from it, which might be a beat packet containing far less information.
getLatestStatusFor(DeviceAnnouncement) - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Look up the most recent status we have seen for a device, given its device announcement packet as returned by DeviceFinder.currentDevices().
getLatestStatusFor(int) - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Look up the most recent status we have seen for a device from a device identifying itself with the specified device number, if any.
getLocalAddress() - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Return the address being used by the virtual CDJ to send its own presence announcement broadcasts, so they can be filtered out by the DeviceFinder.
getMasterListeners() - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Get the set of master listeners that are currently registered.
getMasterTempo() - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Get the current master tempo.
getName() - Method in class org.deepsymmetry.beatlink.DeviceAnnouncement
Get the name reported by the device.
getNumber() - Method in class org.deepsymmetry.beatlink.DeviceAnnouncement
Get the player/device number reported by the device.
getPacketBytes() - Method in class org.deepsymmetry.beatlink.DeviceAnnouncement
Get the raw data bytes of the device announcement packet.
getPacketBytes() - Method in class org.deepsymmetry.beatlink.DeviceUpdate
Get the raw data bytes of the device update packet.
getPacketNumber() - Method in class org.deepsymmetry.beatlink.CdjStatus
Return the sequence number of this update packet, a value that increments with each packet sent.
getPitch() - Method in class org.deepsymmetry.beatlink.Beat
Get the device pitch at the time of the beat.
getPitch() - Method in class org.deepsymmetry.beatlink.CdjStatus
Get the device pitch at the time of the update.
getPitch(int) - Method in class org.deepsymmetry.beatlink.CdjStatus
Get a specific copy of the device pitch information at the time of the update.
getPlayState1() - Method in class org.deepsymmetry.beatlink.CdjStatus
Get the first play state found in the packet, labeled P1 in Figure 11 of the Packet Analysis document.
getPlayState2() - Method in class org.deepsymmetry.beatlink.CdjStatus
Get the second play state found in the packet, labeled P2 in Figure 11 of the Packet Analysis document.
getPlayState3() - Method in class org.deepsymmetry.beatlink.CdjStatus
Get the third play state found in the packet, labeled P3 in Figure 11 of the Packet Analysis document.
getSyncNumber() - Method in class org.deepsymmetry.beatlink.CdjStatus
Get the counter identifying how many times the tempo master has changed.
getTempoEpsilon() - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Find out how large a tempo change is required before we consider it to be a real difference.
getTempoMaster() - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Check which device is the current tempo master, returning the DeviceUpdate packet in which it reported itself to be master.
getTimestamp() - Method in class org.deepsymmetry.beatlink.DeviceAnnouncement
Get the last time the device was heard from.
getTimestamp() - Method in class org.deepsymmetry.beatlink.DeviceUpdate
Get the timestamp recording when the device update was received.
getTrackNumber() - Method in class org.deepsymmetry.beatlink.CdjStatus
Get the track number of the loaded track.
getUpdateListeners() - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Get the set of device update listeners that are currently registered.

I

isActive() - Static method in class org.deepsymmetry.beatlink.BeatFinder
Check whether we are presently listening for beat packets.
isActive() - Static method in class org.deepsymmetry.beatlink.DeviceFinder
Check whether we are presently listening for device announcements.
isActive() - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Check whether we are presently posing as a virtual CDJ and receiving device status updates.
isAtEnd() - Method in class org.deepsymmetry.beatlink.CdjStatus
Is the player currently stopped at the end of a track?
isBeatWithinBarMeaningful() - Method in class org.deepsymmetry.beatlink.Beat
Returns true if this beat is coming from a device where getBeatWithinBar() can reasonably be expected to have musical significance, because it respects the way a track was configured within rekordbox.
isBeatWithinBarMeaningful() - Method in class org.deepsymmetry.beatlink.CdjStatus
Returns true if this beat is coming from a device where CdjStatus.getBeatWithinBar() can reasonably be expected to have musical significance, because it respects the way a track was configured within rekordbox.
isBeatWithinBarMeaningful() - Method in class org.deepsymmetry.beatlink.DeviceUpdate
Returns true if this update is coming from a device where DeviceUpdate.getBeatWithinBar() can reasonably be expected to have musical significance, because it respects the way a track was configured within rekordbox.
isBeatWithinBarMeaningful() - Method in class org.deepsymmetry.beatlink.MixerStatus
Returns true if this beat is coming from a device where MixerStatus.getBeatWithinBar() can reasonably be expected to have musical significance, because it respects the way a track was configured within rekordbox.
isBusy() - Method in class org.deepsymmetry.beatlink.CdjStatus
Check if the player is doing anything.
isCued() - Method in class org.deepsymmetry.beatlink.CdjStatus
Is the player currently cued?
isLinkedUsbAvailable() - Method in class org.deepsymmetry.beatlink.CdjStatus
Is USB media available somewhere on the network?
isLocalUsbEmpty() - Method in class org.deepsymmetry.beatlink.CdjStatus
Is USB media absent from this particular CDJ?
isLocalUsbLoaded() - Method in class org.deepsymmetry.beatlink.CdjStatus
Is USB media loaded in this particular CDJ?
isLocalUsbUnloading() - Method in class org.deepsymmetry.beatlink.CdjStatus
Is USB media being unloaded from this particular CDJ?
isLooping() - Method in class org.deepsymmetry.beatlink.CdjStatus
Is the player currently playing a loop?
isOnAir() - Method in class org.deepsymmetry.beatlink.CdjStatus
Was the CDJ on the air when this update was sent? A player is considered to be on the air when it is connected to a mixer channel that is not faded out.
isPaused() - Method in class org.deepsymmetry.beatlink.CdjStatus
Is the player currently paused?
isPlaying() - Method in class org.deepsymmetry.beatlink.CdjStatus
Was the CDJ playing a track when this update was sent?
isPlayingBackwards() - Method in class org.deepsymmetry.beatlink.CdjStatus
Is the player currently playing backwards?
isPlayingCdjMode() - Method in class org.deepsymmetry.beatlink.CdjStatus
Is the player currently playing with the jog wheel in CDJ mode?
isPlayingForwards() - Method in class org.deepsymmetry.beatlink.CdjStatus
Is the player currently playing forwards?
isPlayingVinylMode() - Method in class org.deepsymmetry.beatlink.CdjStatus
Is the player currently playing with the jog wheel in Vinyl mode?
isSearching() - Method in class org.deepsymmetry.beatlink.CdjStatus
Is the player currently searching?
isSynced() - Method in class org.deepsymmetry.beatlink.CdjStatus
Was the CDJ in Sync mode when this update was sent?
isTempoMaster() - Method in class org.deepsymmetry.beatlink.Beat
Was this beat sent by the current tempo master?
isTempoMaster() - Method in class org.deepsymmetry.beatlink.CdjStatus
Is this CDJ reporting itself to be the current tempo master?
isTempoMaster() - Method in class org.deepsymmetry.beatlink.DeviceUpdate
Is this device reporting itself to be the current tempo master?
isTempoMaster() - Method in class org.deepsymmetry.beatlink.MixerStatus
Is this mixer reporting itself to be the current tempo master?
isTrackLoaded() - Method in class org.deepsymmetry.beatlink.CdjStatus
Is a track loaded?

M

MASTER_FLAG - Static variable in class org.deepsymmetry.beatlink.CdjStatus
The bit within the status flag that indicates the player is the tempo master, as illustrated in Figure 12 of the Packet Analysis document.
MasterAdapter - Class in org.deepsymmetry.beatlink
An abstract adapter class for receiving updates related to the tempo master.
MasterAdapter() - Constructor for class org.deepsymmetry.beatlink.MasterAdapter
 
masterChanged(DeviceUpdate) - Method in class org.deepsymmetry.beatlink.MasterAdapter
 
masterChanged(DeviceUpdate) - Method in interface org.deepsymmetry.beatlink.MasterListener
Invoked when there is a change in which device is the current tempo master.
MasterListener - Interface in org.deepsymmetry.beatlink
The listener interface for receiving updates about changes to tempo master state.
MAXIMUM_AGE - Static variable in class org.deepsymmetry.beatlink.DeviceFinder
The number of milliseconds after which we will consider a device to have disappeared if we have not received an announcement from it.
MixerStatus - Class in org.deepsymmetry.beatlink
Represents a status update sent by a mixer on a DJ Link network.
MixerStatus(DatagramPacket) - Constructor for class org.deepsymmetry.beatlink.MixerStatus
Constructor sets all the immutable interpreted fields based on the packet content.

N

newBeat(Beat) - Method in interface org.deepsymmetry.beatlink.BeatListener
Invoked when a beat is reported on the network.
newBeat(Beat) - Method in class org.deepsymmetry.beatlink.MasterAdapter
Invoked when a beat is reported by the tempo master, as long as the BeatFinder is active.

O

ON_AIR_FLAG - Static variable in class org.deepsymmetry.beatlink.CdjStatus
The bit within the status flag that indicates the player is on the air, as illustrated in Figure 12 of the Packet Analysis document.
org.deepsymmetry.beatlink - package org.deepsymmetry.beatlink
A library for synchronizing with beats from Pioneer DJ Link equipment.

P

packetBytes - Variable in class org.deepsymmetry.beatlink.DeviceUpdate
The packet data containing the device update.
pitchToMultiplier(long) - Static method in class org.deepsymmetry.beatlink.Util
Convert a pitch value reported by a device to the corresponding multiplier (0.0 to 2.0, where normal, unadjusted pitch has the multiplier 1.0).
pitchToPercentage(long) - Static method in class org.deepsymmetry.beatlink.Util
Convert a pitch value reported by a device to the corresponding percentage (-100% to +100%, where normal, unadjusted pitch has the value 0%).
PLAYING_FLAG - Static variable in class org.deepsymmetry.beatlink.CdjStatus
The bit within the status flag that indicates the player is playing, as illustrated in Figure 12 of the Packet Analysis document.

R

received(DeviceUpdate) - Method in interface org.deepsymmetry.beatlink.DeviceUpdateListener
Invoked whenever a device status update is received by VirtualCdj.
removeBeatListener(BeatListener) - Static method in class org.deepsymmetry.beatlink.BeatFinder
Removes the specified beat listener so that it no longer receives beat announcements when DJ Link devices broadcast them to the network.
removeDeviceAnnouncementListener(DeviceAnnouncementListener) - Static method in class org.deepsymmetry.beatlink.DeviceFinder
Removes the specified device announcement listener so that it no longer receives device announcements when DJ Link devices are found on or leave the network.
removeMasterListener(MasterListener) - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Removes the specified master listener so that it no longer receives device updates when there are changes related to the tempo master.
removeUpdateListener(DeviceUpdateListener) - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Removes the specified device update listener so it no longer receives device updates when they come in.

S

sameNetwork(int, InetAddress, InetAddress) - Static method in class org.deepsymmetry.beatlink.Util
Checks whether two internet addresses are on the same subnet.
setAnnounceInterval(int) - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Set the interval, in milliseconds, at which we broadcast presence announcements on the network to pose as a virtual CDJ.
setDeviceName(String) - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Set the name to be used in announcing our presence on the network.
setDeviceNumber(byte) - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Set the device number to be used when sending presence announcements on the network to pose as a virtual CDJ.
setTempoEpsilon(double) - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Set how large a tempo change is required before we consider it to be a real difference.
start() - Static method in class org.deepsymmetry.beatlink.BeatFinder
Start listening for beat announcements.
start() - Static method in class org.deepsymmetry.beatlink.DeviceFinder
Start listening for device announcements and keeping track of the DJ Link devices visible on the network.
start() - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Start announcing ourselves and listening for status packets.
STATUS_FLAGS - Static variable in class org.deepsymmetry.beatlink.CdjStatus
The byte within the packet which contains useful status information, labeled F in Figure 11 of the Packet Analysis document.
STATUS_FLAGS - Static variable in class org.deepsymmetry.beatlink.MixerStatus
The byte within the packet which contains useful status information, labeled F in Figure 10 of the Packet Analysis document.
stop() - Static method in class org.deepsymmetry.beatlink.BeatFinder
Stop listening for beats.
stop() - Static method in class org.deepsymmetry.beatlink.DeviceFinder
Stop listening for device announcements.
stop() - Static method in class org.deepsymmetry.beatlink.VirtualCdj
Stop announcing ourselves and listening for status updates.
SYNCED_FLAG - Static variable in class org.deepsymmetry.beatlink.CdjStatus
The bit within the status flag that indicates the player is synced, as illustrated in Figure 12 of the Packet Analysis document.

T

tempoChanged(double) - Method in class org.deepsymmetry.beatlink.MasterAdapter
 
tempoChanged(double) - Method in interface org.deepsymmetry.beatlink.MasterListener
Invoked when the master tempo has changed.
timestamp - Variable in class org.deepsymmetry.beatlink.DeviceUpdate
When this update was received.
toString() - Method in class org.deepsymmetry.beatlink.Beat
 
toString() - Method in class org.deepsymmetry.beatlink.CdjStatus
 
toString() - Method in class org.deepsymmetry.beatlink.DeviceAnnouncement
 
toString() - Method in class org.deepsymmetry.beatlink.MixerStatus
 

U

unsign(byte) - Static method in class org.deepsymmetry.beatlink.Util
Converts a signed byte to its unsigned int equivalent in the range 0-255.
UPDATE_PORT - Static variable in class org.deepsymmetry.beatlink.VirtualCdj
The port to which other devices will send status update messages.
Util - Class in org.deepsymmetry.beatlink
Provides utility functions.

V

validateHeader(DatagramPacket, int, String) - Static method in class org.deepsymmetry.beatlink.Util
Check to see whether a packet starts with the standard header bytes, followed by a byte identifying it as the kind of packet that is expected.
valueOf(String) - Static method in enum org.deepsymmetry.beatlink.CdjStatus.PlayState1
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.deepsymmetry.beatlink.CdjStatus.PlayState2
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.deepsymmetry.beatlink.CdjStatus.PlayState3
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.deepsymmetry.beatlink.CdjStatus.PlayState1
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.deepsymmetry.beatlink.CdjStatus.PlayState2
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.deepsymmetry.beatlink.CdjStatus.PlayState3
Returns an array containing the constants of this enum type, in the order they are declared.
VirtualCdj - Class in org.deepsymmetry.beatlink
Provides the ability to create a virtual CDJ device that can lurk on a DJ Link network and receive packets sent to players, monitoring the detailed state of the other devices.
A B C D F G I M N O P R S T U V 
Skip navigation links

Copyright © 2016 Deep Symmetry, LLC. All rights reserved.