Enum CdjStatus.PlayState3

    • Enum Constant Detail

      • PAUSED_OR_REVERSE

        public static final CdjStatus.PlayState3 PAUSED_OR_REVERSE
        The player is paused or playing in Reverse mode.
      • FORWARD_VINYL

        public static final CdjStatus.PlayState3 FORWARD_VINYL
        The player is playing in Forward mode with jog mode set to Vinyl.
      • FORWARD_CDJ

        public static final CdjStatus.PlayState3 FORWARD_CDJ
        The player is playing in Forward mode with jog mode set to CDJ.
      • UNKNOWN

        public static final CdjStatus.PlayState3 UNKNOWN
        We received a value that we did not recognize, so we don’t know what it means.
    • Field Detail

      • protocolValue

        public final byte protocolValue
        The value that represents this play state in a status update.
    • Method Detail

      • values

        public static CdjStatus.PlayState3[] 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 (CdjStatus.PlayState3 c : CdjStatus.PlayState3.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CdjStatus.PlayState3 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