|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<VisitHint>
javax.faces.component.visit.VisitHint
public enum VisitHint
An enum that specifies hints that impact the behavior of a component tree visit.
RELEASE_PENDING
VisitContext.getHints()
Enum Constant Summary | |
---|---|
EXECUTE_LIFECYCLE
Hint that indicates that the visit is being performed as part of lifecycle phase execution and as such phase-specific actions (initialization) may be taken. |
|
SKIP_TRANSIENT
Hint that indicates that only non-transient subtrees should be visited. |
|
SKIP_UNRENDERED
Hint that indicates that only the rendered subtrees should be visited. |
Method Summary | |
---|---|
static VisitHint |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static VisitHint[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final VisitHint SKIP_UNRENDERED
public static final VisitHint SKIP_TRANSIENT
public static final VisitHint EXECUTE_LIFECYCLE
Method Detail |
---|
public static final VisitHint[] values()
for(VisitHint c : VisitHint.values()) System.out.println(c);
public static VisitHint valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |