Motion Delay State enum class.
class MotionDelayState
Description:Motion Delay State enum class.
public enum MotionDelayState {
/**
* STOP
*/
STOP(0),
/**
* PAUSE
*/
PAUSE(1),
/**
* TAKING PHOTO
*/
TAKING(2),
/**
* SYNTHETIC
*/
SYNTHETIC(3),
/**
* UNKNOWN
*/
UNKNOWN(-1);
}
Description:Motion Delay State enum class.