public enum Resolutions extends java.lang.Enum<Resolutions> implements Resolution
Enum Constant and Description |
---|
CGA |
FWXGA |
HD1080 |
HD720 |
NTSC |
PAL |
QSXGA |
QVGA |
QXGA |
SVGA |
SXGA |
SXGAp |
TwoK |
UHD_4K |
UHD_8K_16by9 |
UHD_8K_17by8 |
UHD_8K_1by1 |
UXGA |
VGA |
WQXGA |
WSVGA |
WSXGAp |
WUXGA |
WVGA_16by9 |
WVGA_5by3 |
WXGA_5by3 |
WXGA_8by5 |
XGA |
Modifier and Type | Method and Description |
---|---|
int |
getHeight()
Get the height of outputted images.
|
int |
getWidth()
Get the width of outputted images.
|
java.lang.String |
toString() |
static Resolutions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Resolutions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Resolutions QVGA
public static final Resolutions CGA
public static final Resolutions VGA
public static final Resolutions NTSC
public static final Resolutions PAL
public static final Resolutions WVGA_5by3
public static final Resolutions SVGA
public static final Resolutions WVGA_16by9
public static final Resolutions WSVGA
public static final Resolutions XGA
public static final Resolutions HD720
public static final Resolutions WXGA_5by3
public static final Resolutions WXGA_8by5
public static final Resolutions SXGA
public static final Resolutions FWXGA
public static final Resolutions SXGAp
public static final Resolutions WSXGAp
public static final Resolutions UXGA
public static final Resolutions HD1080
public static final Resolutions WUXGA
public static final Resolutions TwoK
public static final Resolutions QXGA
public static final Resolutions WQXGA
public static final Resolutions QSXGA
public static final Resolutions UHD_4K
public static final Resolutions UHD_8K_16by9
public static final Resolutions UHD_8K_17by8
public static final Resolutions UHD_8K_1by1
public static Resolutions[] values()
for (Resolutions c : Resolutions.values()) System.out.println(c);
public static Resolutions 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 getWidth()
Resolution
getWidth
in interface Resolution
public int getHeight()
Resolution
getHeight
in interface Resolution
public java.lang.String toString()
toString
in class java.lang.Enum<Resolutions>