enum

Matter::Cluster::Definitions::MediaPlayback::PlaybackState

Inherits Enum < Comparable < Value < Object

Constants

Playing = 0_u8

Media is currently playing (includes FF and REW)

Paused = 1_u8

Media is currently paused

NotPlaying = 2_u8

Media is not currently playing

Buffering = 3_u8

Media is not currently buffering and playback will start when buffer has been filled

Instance methods

buffering?

Returns true if this enum value equals Buffering

Source
not_playing?

Returns true if this enum value equals NotPlaying

Source
paused?

Returns true if this enum value equals Paused

Source
playing?

Returns true if this enum value equals Playing

Source