|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Core.Resolution>
deadbeef.SupTools.Core.Resolution
public static enum Core.Resolution
Enumeration of supported resolutions
Enum Constant Summary | |
---|---|
HD_1080
1080p: 1920x1080 |
|
HD_1440x1080
1440x1080 |
|
HD_720
720p: 1280x720 |
|
NTSC
NTSC: 720x480 |
|
PAL
PAL: 720x576 |
Method Summary | |
---|---|
static Core.Resolution |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Core.Resolution[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Core.Resolution NTSC
public static final Core.Resolution PAL
public static final Core.Resolution HD_720
public static final Core.Resolution HD_1440x1080
public static final Core.Resolution HD_1080
Method Detail |
---|
public static Core.Resolution[] values()
for (Core.Resolution c : Core.Resolution.values()) System.out.println(c);
public static Core.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 name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |