Enum CdjStatus.PlayState1

    • Enum Constant Detail

      • LOADING

        public static final CdjStatus.PlayState1 LOADING
        A track is in the process of being loaded.
      • PAUSED

        public static final CdjStatus.PlayState1 PAUSED
        The player is paused anywhere other than the cue point.
      • CUE_PLAYING

        public static final CdjStatus.PlayState1 CUE_PLAYING
        Cue play is in progress (playback while the cue button is held down).
      • CUE_SCRATCHING

        public static final CdjStatus.PlayState1 CUE_SCRATCHING
        Cue scratch is in progress; the player will return to the cue point when the jog wheel is released.
      • SEARCHING

        public static final CdjStatus.PlayState1 SEARCHING
        The player is searching forwards or backwards.
      • ENDED

        public static final CdjStatus.PlayState1 ENDED
        The player reached the end of the track and stopped.
      • UNKNOWN

        public static final CdjStatus.PlayState1 UNKNOWN
        We received a value we don’t 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.PlayState1[] 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.PlayState1 c : CdjStatus.PlayState1.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.PlayState1 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