public enum VideoQuality extends java.lang.Enum<VideoQuality> implements Control
CameraView.setVideoQuality(VideoQuality)| Enum Constant and Description |
|---|
HIGHEST
Quality level corresponding to the highest available resolution.
|
LOWEST
Quality level corresponding to the lowest available resolution.
|
MAX_1080P
Quality level corresponding to the 1080p (1920 x 1080) resolution.
|
MAX_2160P
Quality level corresponding to the 2160p (3840x2160) resolution.
|
MAX_480P
Quality level corresponding to the 480p (720 x 480) resolution.
|
MAX_720P
Quality level corresponding to the 720p (1280 x 720) resolution.
|
MAX_QVGA
Quality level corresponding to the QVGA (320x240) resolution.
|
| Modifier and Type | Method and Description |
|---|---|
static VideoQuality |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VideoQuality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VideoQuality LOWEST
public static final VideoQuality HIGHEST
public static final VideoQuality MAX_QVGA
public static final VideoQuality MAX_480P
public static final VideoQuality MAX_720P
public static final VideoQuality MAX_1080P
public static final VideoQuality MAX_2160P
public static VideoQuality[] values()
for (VideoQuality c : VideoQuality.values()) System.out.println(c);
public static VideoQuality 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