Package com.aspose.threed
Enum RenderQueueGroupId
- java.lang.Object
-
- java.lang.Enum<RenderQueueGroupId>
-
- com.aspose.threed.RenderQueueGroupId
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RenderQueueGroupId>
,java.lang.constant.Constable
public enum RenderQueueGroupId extends java.lang.Enum<RenderQueueGroupId>
The group id of render queue
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BACKGROUND
Render queue for backgroundGEOMETRIES
Render queue for geometriesMAIN
Render queue for mainOPAQUE
Render queue for opaque objectsOVERLAY
Render queue for overlaysSKIES
Render queue for skies
-
Method Summary
Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
BACKGROUND
public static final RenderQueueGroupId BACKGROUND
Render queue for background
-
SKIES
public static final RenderQueueGroupId SKIES
Render queue for skies
-
GEOMETRIES
public static final RenderQueueGroupId GEOMETRIES
Render queue for geometries
-
MAIN
public static final RenderQueueGroupId MAIN
Render queue for main
-
OPAQUE
public static final RenderQueueGroupId OPAQUE
Render queue for opaque objects
-
OVERLAY
public static final RenderQueueGroupId OVERLAY
Render queue for overlays
-
-
Method Detail
-
values
public static RenderQueueGroupId[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RenderQueueGroupId 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 namejava.lang.NullPointerException
- if the argument is null
-
-