public enum ViewHandlerMode extends Enum<ViewHandlerMode>
| Enum Constant and Description | 
|---|
| BUILD_WITH_PARENT_QUERY_PARAMETERSThe  FacesViewsViewHandlerconstructs the action URL itself, but takes the query parameters (if any)
 from the outcome of the parent view handler. | 
| STRIP_EXTENSION_FROM_PARENTTakes the outcome from the parent view handler and strips the extension from it. | 
| Modifier and Type | Method and Description | 
|---|---|
| static ViewHandlerMode | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ViewHandlerMode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ViewHandlerMode STRIP_EXTENSION_FROM_PARENT
public static final ViewHandlerMode BUILD_WITH_PARENT_QUERY_PARAMETERS
FacesViewsViewHandler constructs the action URL itself, but takes the query parameters (if any)
 from the outcome of the parent view handler.public static ViewHandlerMode[] values()
for (ViewHandlerMode c : ViewHandlerMode.values()) System.out.println(c);
public static ViewHandlerMode 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 © 2012–2015 OmniFaces. All rights reserved.