public static enum RenderProperties.Resolution extends java.lang.Enum<RenderProperties.Resolution>
resolution parameter of RenderProperties.| Enum Constant and Description |
|---|
HD_HORIZONTAL
1280x720
|
HD_VERTICAL
720x1280
|
SD_HORIZONTAL
640x480
|
SD_VERTICAL
480x640
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static RenderProperties.Resolution |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RenderProperties.Resolution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderProperties.Resolution SD_VERTICAL
public static final RenderProperties.Resolution SD_HORIZONTAL
public static final RenderProperties.Resolution HD_VERTICAL
public static final RenderProperties.Resolution HD_HORIZONTAL
public static RenderProperties.Resolution[] values()
for (RenderProperties.Resolution c : RenderProperties.Resolution.values()) System.out.println(c);
public static RenderProperties.Resolution 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 java.lang.String toString()
toString in class java.lang.Enum<RenderProperties.Resolution>