Enum SyncMode

  • All Implemented Interfaces:
    Serializable, Comparable<SyncMode>

    @API(status=MAINTAINED)
    public enum SyncMode
    extends Enum<SyncMode>
    Tracks the synchronization, if any, being performed between the Ableton Link network and the Pro DJ Link network.
    • Enum Constant Detail

      • OFF

        public static final SyncMode OFF
        No synchronization is being performed.
      • PASSIVE

        public static final SyncMode PASSIVE
        Ableton Link always follows the Pro DJ Link network, and we do not attempt to control other players on that network.
      • FULL

        public static final SyncMode FULL
        Bidirectional, determined by the Master and Sync states of players on the DJ Link network, including Beat Link’s VirtualCDJ, which stands in for the Ableton Link session.
    • Method Detail

      • values

        public static SyncMode[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (SyncMode c : SyncMode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SyncMode valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null