public static enum RawCameraControl.CaptureIntent extends Enum<RawCameraControl.CaptureIntent>
| Enum Constant and Description |
|---|
CUSTOM
The goal of this request doesn't fall into the other categories.
|
PREVIEW
This request is for a preview-like use case.
|
STILL_CAPTURE
This request is for a still capture-type use case.
|
VIDEO_RECORD
This request is for a video recording use case.
|
VIDEO_SNAPSHOT
This request is for a video snapshot (still image while recording video) use case.
|
ZERO_SHUTTER_LAG
This request is for a ZSL usecase; the application will stream full-resolution images and reprocess one or several later for a final capture.
|
| Modifier and Type | Field and Description |
|---|---|
byte |
value |
| Modifier and Type | Method and Description |
|---|---|
RawCameraControl.CaptureIntent |
intern() |
String |
toString() |
static RawCameraControl.CaptureIntent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RawCameraControl.CaptureIntent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RawCameraControl.CaptureIntent CUSTOM
public static final RawCameraControl.CaptureIntent PREVIEW
public static final RawCameraControl.CaptureIntent STILL_CAPTURE
public static final RawCameraControl.CaptureIntent VIDEO_RECORD
public static final RawCameraControl.CaptureIntent VIDEO_SNAPSHOT
public static final RawCameraControl.CaptureIntent ZERO_SHUTTER_LAG
public static RawCameraControl.CaptureIntent[] values()
for (RawCameraControl.CaptureIntent c : RawCameraControl.CaptureIntent.values()) System.out.println(c);
public static RawCameraControl.CaptureIntent 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.CaptureIntent intern()
public String toString()
toString in class Enum<RawCameraControl.CaptureIntent>Copyright © 2023. All rights reserved.