public static enum IRenderTarget.LayerType extends java.lang.Enum<IRenderTarget.LayerType>
| Enum Constant and Description | 
|---|
| BACKGROUNDThe layer that renders background items, such as guides. | 
| CAPTUREThe layer that renders capture strokes. | 
| MODELThe layer that renders the model. | 
| TEMPORARYThe layer that renders temporary items. | 
| Modifier and Type | Method and Description | 
|---|---|
| static IRenderTarget.LayerType | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static IRenderTarget.LayerType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final IRenderTarget.LayerType BACKGROUND
public static final IRenderTarget.LayerType MODEL
public static final IRenderTarget.LayerType TEMPORARY
public static final IRenderTarget.LayerType CAPTURE
public static IRenderTarget.LayerType[] values()
for (IRenderTarget.LayerType c : IRenderTarget.LayerType.values()) System.out.println(c);
public static IRenderTarget.LayerType 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