Panoramic photo current state class.
class WorkState
Description:Panoramic photo current state enumeration definition
public enum PanoramicShootStatus {
/**
* stop
*/
STOP(0),
/**
* photograph
*/
SHOOTING(1),
/**
* splicing
*/
SPLICING(2),
/**
*camera storage is full
*/
STORAGE_FULL(16),
UNKNOWN(-1);
}
Description:Panoramic photo current state enumeration class.