public static enum CameraPreviewConfig.CameraResolutionMode extends java.lang.Enum<CameraPreviewConfig.CameraResolutionMode>
| Enum Constant and Description |
|---|
CAMERA_RESOLUTION_PRECISE_MODE
精确的匹配输入的采集分辨率
|
CAMERA_RESOLUTION_RANGE_MODE
接近高清720*1080按照 720*1080采集, 接近540*960的按照这个分辨率进行采集.
|
| Modifier and Type | Method and Description |
|---|---|
static CameraPreviewConfig.CameraResolutionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CameraPreviewConfig.CameraResolutionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CameraPreviewConfig.CameraResolutionMode CAMERA_RESOLUTION_PRECISE_MODE
public static final CameraPreviewConfig.CameraResolutionMode CAMERA_RESOLUTION_RANGE_MODE
public static CameraPreviewConfig.CameraResolutionMode[] values()
for (CameraPreviewConfig.CameraResolutionMode c : CameraPreviewConfig.CameraResolutionMode.values()) System.out.println(c);
public static CameraPreviewConfig.CameraResolutionMode 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 null