public enum StillCaptureMode extends java.lang.Enum<StillCaptureMode>
| Enum Constant and Description | 
|---|
SINGLE
Single shot mode. 
 | 
TIME_LAPSE
Interval shooting mode. 
 | 
VIDEO
The shooting mode is "Video shooting mode". 
 | 
| Modifier and Type | Method and Description | 
|---|---|
UINT16 | 
value()
Returns the integer value according THETA API v1. 
 | 
static StillCaptureMode | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static StillCaptureMode | 
valueOf(UINT16 value)
Returns the still capture mode enum from the integer value defined by THETA API v1. 
 | 
static StillCaptureMode[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final StillCaptureMode VIDEO
public static final StillCaptureMode SINGLE
public static final StillCaptureMode TIME_LAPSE
public static StillCaptureMode[] values()
for (StillCaptureMode c : StillCaptureMode.values()) System.out.println(c);
public static StillCaptureMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic UINT16 value()
public static StillCaptureMode valueOf(UINT16 value)