001package org.intellimate.izou.sdk.frameworks.music.player;
002
003/**
004 * this class represents the 2 different PlaybackStates
005 * @author LeanderK
006 * @version 1.0
007 */
008public enum PlaybackState {
009    /**
010     * indicates that the Player is playing
011     */
012    PLAY,
013    /**
014     * indicates that the Player is pausing, but has not ended
015     */
016    PAUSE
017}