public enum SceneDrawMode extends java.lang.Enum<SceneDrawMode>
| Enum Constant and Description |
|---|
Circular |
Flattened |
Linear |
Standard |
| Modifier and Type | Method and Description |
|---|---|
static SceneDrawMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SceneDrawMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SceneDrawMode Circular
public static final SceneDrawMode Flattened
public static final SceneDrawMode Linear
public static final SceneDrawMode Standard
public static SceneDrawMode 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 nullpublic static SceneDrawMode[] values()
for (SceneDrawMode c : SceneDrawMode.values()) System.out.println(c);