Uses of Interface
org.omnifaces.component.ParamHolder
-
Packages that use ParamHolder Package Description org.omnifaces.component org.omnifaces.component.output org.omnifaces.util -
-
Uses of ParamHolder in org.omnifaces.component
Classes in org.omnifaces.component that implement ParamHolder Modifier and Type Class Description classSimpleParam<T>This class provides a basic and default implementation of theParamHolderinterface.Constructors in org.omnifaces.component with parameters of type ParamHolder Constructor Description SimpleParam(ParamHolder<T> param)Construct a simple param with name, value and converter of givenParamHolderinstance. -
Uses of ParamHolder in org.omnifaces.component.output
Classes in org.omnifaces.component.output that implement ParamHolder Modifier and Type Class Description classParam<T>The<o:param>is a component that extends the standardUIParameterto implementValueHolderand thus support aConverterto convert the supplied value to string, if necessary.classPathParam<T>The<o:pathParam>is a component that extends the OmniFacesParamto supportMultiViewsfeature ofFacesViews. -
Uses of ParamHolder in org.omnifaces.util
Methods in org.omnifaces.util that return types with arguments of type ParamHolder Modifier and Type Method Description static <T> List<ParamHolder<T>>Components. getParams(UIComponent component)Returns an unmodifiable list with all childUIParametercomponents (<f|o:param>) of the given parent component as a list ofParamHolderinstances.Method parameters in org.omnifaces.util with type arguments of type ParamHolder Modifier and Type Method Description static StringFaces. getBookmarkableURL(String viewId, Collection<? extends ParamHolder<?>> params, boolean includeViewParams)Returns the concrete domain-relative URL to the given view with the given params URL-encoded in the query string and optionally include view parameters as well.static StringFaces. getBookmarkableURL(Collection<? extends ParamHolder<?>> params, boolean includeViewParams)Returns the concrete domain-relative URL to the current view with the given params URL-encoded in the query string and optionally include view parameters as well.static StringFacesLocal. getBookmarkableURL(FacesContext context, String viewId, Collection<? extends ParamHolder<?>> params, boolean includeViewParams)static StringFacesLocal. getBookmarkableURL(FacesContext context, Collection<? extends ParamHolder<?>> params, boolean includeViewParams)static StringServlets. toQueryString(List<? extends ParamHolder<?>> params)Converts the given parameter values list to request query string.
-