public static enum GGKinect.DecorationStyle extends java.lang.Enum<GGKinect.DecorationStyle>
Enum Constant and Description |
---|
HIDDEN
Hides the video window.
|
NOMENU
Shows a window with standard frame but no system menu.
|
STANDARD
Shows a standard window with a title bar containing the usual system menu.
|
UNDECORATED
Shows a window with no border.
|
Modifier and Type | Method and Description |
---|---|
static GGKinect.DecorationStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GGKinect.DecorationStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GGKinect.DecorationStyle STANDARD
public static final GGKinect.DecorationStyle NOMENU
public static final GGKinect.DecorationStyle UNDECORATED
public static final GGKinect.DecorationStyle HIDDEN
public static GGKinect.DecorationStyle[] values()
for (GGKinect.DecorationStyle c : GGKinect.DecorationStyle.values()) System.out.println(c);
public static GGKinect.DecorationStyle 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