public enum RenderingPhase extends Enum<RenderingPhase>
| Enum Constant and Description |
|---|
BODY |
BODY_BOTTOM |
BODY_LOAD_SCRIPTS |
BODY_SCRIPTS |
BODY_TOP |
HEAD |
HEAD_BOTTOM |
HEAD_CSS |
HEAD_SCRIPTS |
HEAD_TOP |
| Modifier and Type | Method and Description |
|---|---|
static RenderingPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderingPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderingPhase HEAD_TOP
public static final RenderingPhase HEAD
public static final RenderingPhase HEAD_CSS
public static final RenderingPhase HEAD_SCRIPTS
public static final RenderingPhase HEAD_BOTTOM
public static final RenderingPhase BODY_TOP
public static final RenderingPhase BODY
public static final RenderingPhase BODY_BOTTOM
public static final RenderingPhase BODY_LOAD_SCRIPTS
public static final RenderingPhase BODY_SCRIPTS
public static RenderingPhase[] values()
for (RenderingPhase c : RenderingPhase.values()) System.out.println(c);
public static RenderingPhase valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.