public enum SearchExpressionHint extends Enum<SearchExpressionHint>
| Enum Constant and Description | 
|---|
| IGNORE_NO_RESULT | 
| RESOLVE_CLIENT_SIDEIndicate that some expressions can be resolved on the client side. | 
| RESOLVE_SINGLE_COMPONENT | 
| SKIP_VIRTUAL_COMPONENTSIndicate that the method is collecting a list of real UIComponent instances. | 
| Modifier and Type | Method and Description | 
|---|---|
| static SearchExpressionHint | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static SearchExpressionHint[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SearchExpressionHint IGNORE_NO_RESULT
public static final SearchExpressionHint SKIP_VIRTUAL_COMPONENTS
public static final SearchExpressionHint RESOLVE_SINGLE_COMPONENT
public static final SearchExpressionHint RESOLVE_CLIENT_SIDE
public static SearchExpressionHint[] values()
for (SearchExpressionHint c : SearchExpressionHint.values()) System.out.println(c);
public static SearchExpressionHint 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 © 2025 The Apache Software Foundation. All rights reserved.