public enum CaptureStatus extends java.lang.Enum<CaptureStatus>
Enum Constant and Description |
---|
CAPTURING
The camera is executing shooting.
|
IDLE
The camera is ready.
|
Modifier and Type | Method and Description |
---|---|
UINT8 |
value() |
static CaptureStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CaptureStatus |
valueOf(UINT8 value) |
static CaptureStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CaptureStatus IDLE
public static final CaptureStatus CAPTURING
public static CaptureStatus[] values()
for (CaptureStatus c : CaptureStatus.values()) System.out.println(c);
public static CaptureStatus 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 UINT8 value()
public static CaptureStatus valueOf(UINT8 value)