org.deken.game.graphics
Enum DisplayManager.ScreenSize
java.lang.Object
java.lang.Enum<DisplayManager.ScreenSize>
org.deken.game.graphics.DisplayManager.ScreenSize
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<DisplayManager.ScreenSize>
- Enclosing class:
- DisplayManager
public static enum DisplayManager.ScreenSize
- extends java.lang.Enum<DisplayManager.ScreenSize>
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
SCREEN_320x240
public static final DisplayManager.ScreenSize SCREEN_320x240
SCREEN_400x300
public static final DisplayManager.ScreenSize SCREEN_400x300
SCREEN_640x480
public static final DisplayManager.ScreenSize SCREEN_640x480
SCREEN_800x600
public static final DisplayManager.ScreenSize SCREEN_800x600
SCREEN_1024x768
public static final DisplayManager.ScreenSize SCREEN_1024x768
SCREEN_1152x864
public static final DisplayManager.ScreenSize SCREEN_1152x864
SCREEN_1280x1024
public static final DisplayManager.ScreenSize SCREEN_1280x1024
values
public static DisplayManager.ScreenSize[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (DisplayManager.ScreenSize c : DisplayManager.ScreenSize.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static DisplayManager.ScreenSize valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null