public enum VisitHint extends Enum<VisitHint>
An enum that specifies hints that impact the behavior of a component tree visit.
VisitContext.getHints()| Enum Constant and Description | 
|---|
| EXECUTE_LIFECYCLEHint 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_ITERATIONHint that indicates that the visit should traverse only full component
 instances and not "virtual" ones like UIData rows and so on. | 
| SKIP_TRANSIENTHint that indicates that only non-transient subtrees should be visited. | 
| SKIP_UNRENDEREDHint that indicates that only the rendered subtree should be visited. | 
| Modifier and Type | Method and Description | 
|---|---|
| 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 are declared. | 
public static final VisitHint SKIP_UNRENDERED
public static final VisitHint SKIP_TRANSIENT
public static final VisitHint EXECUTE_LIFECYCLE
public static final VisitHint SKIP_ITERATION
public static 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 nameNullPointerException - if the argument is nullCopyright © 2021 The Apache Software Foundation. All rights reserved.