![JAR search and dependency download from the Maven repository](/logo.png)
org.assertj.android.mediarouter.v7.api.media.MediaItemStatusPlaybackState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assertj-android-mediarouter-v7 Show documentation
Show all versions of assertj-android-mediarouter-v7 Show documentation
A set of AssertJ assertion helpers geared toward testing Android.
package org.assertj.android.mediarouter.v7.api.media;
import android.support.annotation.IntDef;
import android.support.v7.media.MediaItemStatus;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.SOURCE;
@IntDef({
MediaItemStatus.PLAYBACK_STATE_BUFFERING,
MediaItemStatus.PLAYBACK_STATE_CANCELED,
MediaItemStatus.PLAYBACK_STATE_ERROR,
MediaItemStatus.PLAYBACK_STATE_FINISHED,
MediaItemStatus.PLAYBACK_STATE_INVALIDATED,
MediaItemStatus.PLAYBACK_STATE_PAUSED,
MediaItemStatus.PLAYBACK_STATE_PENDING,
MediaItemStatus.PLAYBACK_STATE_PLAYING
})
@Retention(SOURCE)
@interface MediaItemStatusPlaybackState {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy