org.xith3d.render.config
Enum DisplayMode.FullscreenMode
java.lang.Object
java.lang.Enum<DisplayMode.FullscreenMode>
org.xith3d.render.config.DisplayMode.FullscreenMode
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<DisplayMode.FullscreenMode>
- Enclosing class:
- DisplayMode
public static enum DisplayMode.FullscreenMode
- extends java.lang.Enum<DisplayMode.FullscreenMode>
| 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 |
FULLSCREEN
public static final DisplayMode.FullscreenMode FULLSCREEN
WINDOWED
public static final DisplayMode.FullscreenMode WINDOWED
WINDOWED_UNDECORATED
public static final DisplayMode.FullscreenMode WINDOWED_UNDECORATED
values
public static DisplayMode.FullscreenMode[] 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 (DisplayMode.FullscreenMode c : DisplayMode.FullscreenMode.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static DisplayMode.FullscreenMode 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
isFullscreen
public final boolean isFullscreen()
isWindowed
public final boolean isWindowed()
isUndecorated
public final boolean isUndecorated()