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 class
SimpleParam<T>
This class provides a basic and default implementation of theParamHolder
interface.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 givenParamHolder
instance. -
Uses of ParamHolder in org.omnifaces.component.output
Classes in org.omnifaces.component.output that implement ParamHolder Modifier and Type Class Description class
Param<T>
The<o:param>
is a component that extends the standardUIParameter
to implementValueHolder
and thus support aConverter
to convert the supplied value to string, if necessary.class
PathParam<T>
The<o:pathParam>
is a component that extends the OmniFacesParam
to supportMultiViews
feature 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 childUIParameter
components (<f|o:param>
) of the given parent component as a list ofParamHolder
instances.Method parameters in org.omnifaces.util with type arguments of type ParamHolder Modifier and Type Method Description static String
Faces. 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 String
Faces. 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 String
FacesLocal. getBookmarkableURL(FacesContext context, String viewId, Collection<? extends ParamHolder<?>> params, boolean includeViewParams)
static String
FacesLocal. getBookmarkableURL(FacesContext context, Collection<? extends ParamHolder<?>> params, boolean includeViewParams)
static String
Servlets. toQueryString(List<? extends ParamHolder<?>> params)
Converts the given parameter values list to request query string.
-