public static enum RawCameraControl.AutoFocusMode extends Enum<RawCameraControl.AutoFocusMode>
| Enum Constant and Description |
|---|
AUTO
Basic automatic focus mode.
|
CONTINUOUS_PICTURE
In this mode, the AF algorithm modifies the lens position continually to attempt to provide a constantly-in-focus image stream.
|
CONTINUOUS_VIDEO
In this mode, the AF algorithm modifies the lens position continually to attempt to provide a constantly-in-focus image stream.
|
EDOF
Extended depth of field (digital focus) mode.
|
MACRO
Close-up focusing mode - this mode is optimized for focusing on objects very close to the camera.
|
OFF
Autofocus disabled.
|
| Modifier and Type | Field and Description |
|---|---|
byte |
value |
| Modifier and Type | Method and Description |
|---|---|
RawCameraControl.AutoFocusMode |
intern() |
String |
toString() |
static RawCameraControl.AutoFocusMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RawCameraControl.AutoFocusMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RawCameraControl.AutoFocusMode OFF
public static final RawCameraControl.AutoFocusMode AUTO
public static final RawCameraControl.AutoFocusMode MACRO
public static final RawCameraControl.AutoFocusMode CONTINUOUS_VIDEO
public static final RawCameraControl.AutoFocusMode CONTINUOUS_PICTURE
public static final RawCameraControl.AutoFocusMode EDOF
public static RawCameraControl.AutoFocusMode[] values()
for (RawCameraControl.AutoFocusMode c : RawCameraControl.AutoFocusMode.values()) System.out.println(c);
public static RawCameraControl.AutoFocusMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic RawCameraControl.AutoFocusMode intern()
public String toString()
toString in class Enum<RawCameraControl.AutoFocusMode>Copyright © 2023. All rights reserved.