public static enum CameraInterface.CameraResolutionMode extends java.lang.Enum<CameraInterface.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 CameraInterface.CameraResolutionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CameraInterface.CameraResolutionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CameraInterface.CameraResolutionMode CAMERA_RESOLUTION_PRECISE_MODE
public static final CameraInterface.CameraResolutionMode CAMERA_RESOLUTION_RANGE_MODE
public static CameraInterface.CameraResolutionMode[] values()
for (CameraInterface.CameraResolutionMode c : CameraInterface.CameraResolutionMode.values()) System.out.println(c);
public static CameraInterface.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