public enum RenderQueueGroupId extends java.lang.Enum<RenderQueueGroupId>
Enum Constant and Description |
---|
BACKGROUND
Render queue for background
|
GEOMETRIES
Render queue for geometries
|
MAIN
Render queue for main
|
OPAQUE
Render queue for opaque objects
|
OVERLAY
Render queue for overlays
|
SKIES
Render queue for skies
|
Modifier and Type | Method and Description |
---|---|
static RenderQueueGroupId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RenderQueueGroupId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderQueueGroupId BACKGROUND
public static final RenderQueueGroupId SKIES
public static final RenderQueueGroupId GEOMETRIES
public static final RenderQueueGroupId MAIN
public static final RenderQueueGroupId OPAQUE
public static final RenderQueueGroupId OVERLAY
public static RenderQueueGroupId[] values()
for (RenderQueueGroupId c : RenderQueueGroupId.values()) System.out.println(c);
public static RenderQueueGroupId 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