public static enum CameraCapturerConfiguration.CAMERA_FOCAL_LENGTH_TYPE extends java.lang.Enum<CameraCapturerConfiguration.CAMERA_FOCAL_LENGTH_TYPE>
Enum Constant and Description |
---|
CAMERA_FOCAL_LENGTH_DEFAULT
By default, there are no wide-angle and ultra-wide-angle properties.
|
CAMERA_FOCAL_LENGTH_TELEPHOTO
Telephoto lens.
|
CAMERA_FOCAL_LENGTH_ULTRA_WIDE
Lens with focal length of less than 24mm.
|
CAMERA_FOCAL_LENGTH_WIDE_ANGLE
Lens with focal length from 24mm to 35mm.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static CameraCapturerConfiguration.CAMERA_FOCAL_LENGTH_TYPE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CameraCapturerConfiguration.CAMERA_FOCAL_LENGTH_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CameraCapturerConfiguration.CAMERA_FOCAL_LENGTH_TYPE CAMERA_FOCAL_LENGTH_DEFAULT
public static final CameraCapturerConfiguration.CAMERA_FOCAL_LENGTH_TYPE CAMERA_FOCAL_LENGTH_WIDE_ANGLE
public static final CameraCapturerConfiguration.CAMERA_FOCAL_LENGTH_TYPE CAMERA_FOCAL_LENGTH_ULTRA_WIDE
public static final CameraCapturerConfiguration.CAMERA_FOCAL_LENGTH_TYPE CAMERA_FOCAL_LENGTH_TELEPHOTO
public static CameraCapturerConfiguration.CAMERA_FOCAL_LENGTH_TYPE[] values()
for (CameraCapturerConfiguration.CAMERA_FOCAL_LENGTH_TYPE c : CameraCapturerConfiguration.CAMERA_FOCAL_LENGTH_TYPE.values()) System.out.println(c);
public static CameraCapturerConfiguration.CAMERA_FOCAL_LENGTH_TYPE 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 int getValue()