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