Enum CdjStatus.PlayState2

    • Enum Constant Detail

      • OPUS_MOVING

        public static final CdjStatus.PlayState2 OPUS_MOVING
        We have seen the Opus Quad report this value when it is playing but the main status flag lies about that fact.
      • UNKNOWN

        public static final CdjStatus.PlayState2 UNKNOWN
        We saw an unknown value, so we don’t know what it means.
    • Field Detail

      • protocolValue

        @API(status=STABLE)
        public final byte protocolValue
        The value that represents this play state in a status update.
    • Method Detail

      • values

        public static CdjStatus.PlayState2[] 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.PlayState2 c : CdjStatus.PlayState2.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.PlayState2 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