public static enum CapabilityImageControl.CommandId extends java.lang.Enum<CapabilityImageControl.CommandId> implements Capability.CommandId
CapabilityImageControl.| Enum Constant and Description |
|---|
SET_AE_MODE
Set the Auto-Exposure mode of the camera.
|
SET_AF_MODE
Set the Auto-Focus mode of the camera.
|
SET_AWB_MODE
Set the Auto-White-Balance mode of the camera.
|
SET_BRIGHTNESS
Set the brightness adjustment of the camera.
|
SET_CONTRAST
Set the contrast adjustment of the camera.
|
SET_FLIP
|
SET_HUE
Set the hue adjustment of the camera.
|
SET_IR_CUT_MODE
Set the IR Cut mode of the camera.
|
SET_MIRROR
|
SET_PRESET
Set the preset mode of the camera.
|
SET_SATURATION
Set the saturation adjustment of the camera.
|
SET_TEXT
|
SET_ZOOM
Set the Zoom level of the camera.
|
| Modifier and Type | Method and Description |
|---|---|
static CapabilityImageControl.CommandId |
getEnum(int index)
A function to get
Capability.CommandId given its index. |
int |
getInt()
A function to get ordinal value of enum.
|
static CapabilityImageControl.CommandId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CapabilityImageControl.CommandId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CapabilityImageControl.CommandId SET_AF_MODE
public static final CapabilityImageControl.CommandId SET_AE_MODE
public static final CapabilityImageControl.CommandId SET_AWB_MODE
public static final CapabilityImageControl.CommandId SET_ZOOM
public static final CapabilityImageControl.CommandId SET_IR_CUT_MODE
public static final CapabilityImageControl.CommandId SET_PRESET
public static final CapabilityImageControl.CommandId SET_HUE
public static final CapabilityImageControl.CommandId SET_SATURATION
public static final CapabilityImageControl.CommandId SET_CONTRAST
public static final CapabilityImageControl.CommandId SET_BRIGHTNESS
public static final CapabilityImageControl.CommandId SET_FLIP
public static final CapabilityImageControl.CommandId SET_MIRROR
public static final CapabilityImageControl.CommandId SET_TEXT
public static CapabilityImageControl.CommandId[] values()
for (CapabilityImageControl.CommandId c : CapabilityImageControl.CommandId.values()) System.out.println(c);
public static CapabilityImageControl.CommandId 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 static CapabilityImageControl.CommandId getEnum(int index)
Capability.CommandId given its index.index - index of the required Capability.CommandId.Capability.CommandId at the given index.public int getInt()
getInt in interface CommandIdInterface