/*
* This is the source code of DMPLayer for Android v. 1.0.0.
* You should have received a copy of the license in this archive (see LICENSE).
* Copyright @Dibakar_Mistry, 2015.
*/
package com.dmplayer.observablelib;
/**
* Constants that indicates the scroll state of the Scrollable widgets.
*/
public enum ScrollState {
/**
* Widget is stopped.
* This state does not always mean that this widget have never been scrolled.
*/
STOP,
/**
* Widget is scrolled up by swiping it down.
*/
UP,
/**
* Widget is scrolled down by swiping it up.
*/
DOWN,
}