public enum ZOrderClass extends java.lang.Enum<ZOrderClass>
| Enum Constant and Description |
|---|
DECORATION
Images and Rectangles
|
ROOT_FRAME
Root frames (are parented directly to a window)
|
WIDGET
Regular widgets and non-root frames
|
WINDOW
Windows
|
| Modifier and Type | Method and Description |
|---|---|
static ZOrderClass |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ZOrderClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZOrderClass WINDOW
public static final ZOrderClass ROOT_FRAME
public static final ZOrderClass WIDGET
public static final ZOrderClass DECORATION
public static ZOrderClass[] values()
for (ZOrderClass c : ZOrderClass.values()) System.out.println(c);
public static ZOrderClass 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 null