public enum WebcamResolution extends Enum<WebcamResolution>
Enum Constant and Description |
---|
CIF
Size 352x288
|
HD720
Size 1280x720 also known as HD 720p.
|
HVGA
Size 480x400
|
PAL
Size 768x576
|
QQVGA
Size 176x144
|
QVGA
Size 320x240
|
QXGA
Size 2048x1536
|
SVGA
Size 800x600
|
SXGA
Size 1280x1024
|
UXGA
Size 1600x1200
|
VGA
Size 640x480
|
WXGA
Size 1280x768
|
XGA
1024x768
|
Modifier and Type | Method and Description |
---|---|
Dimension |
getSize()
Get resolution size.
|
static WebcamResolution |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebcamResolution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebcamResolution QQVGA
public static final WebcamResolution QVGA
public static final WebcamResolution CIF
public static final WebcamResolution HVGA
public static final WebcamResolution VGA
public static final WebcamResolution PAL
public static final WebcamResolution SVGA
public static final WebcamResolution XGA
public static final WebcamResolution HD720
public static final WebcamResolution WXGA
public static final WebcamResolution SXGA
public static final WebcamResolution UXGA
public static final WebcamResolution QXGA
public static WebcamResolution[] values()
for (WebcamResolution c : WebcamResolution.values()) System.out.println(c);
public static WebcamResolution 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 nullCopyright © 2012-2014 Bartosz Firyn (SarXos). All Rights Reserved.