Uses of Class
com.vaadin.flow.router.QueryParameters
-
Packages that use QueryParameters Package Description com.vaadin.flow.component com.vaadin.flow.component.internal com.vaadin.flow.component.webcomponent com.vaadin.flow.router -
-
Uses of QueryParameters in com.vaadin.flow.component
Methods in com.vaadin.flow.component with parameters of type QueryParameters Modifier and Type Method Description voidUI. navigate(String location, QueryParameters queryParameters)Updates this UI to show the view corresponding to the given location and query parameters. -
Uses of QueryParameters in com.vaadin.flow.component.internal
Methods in com.vaadin.flow.component.internal with parameters of type QueryParameters Modifier and Type Method Description voidJavaScriptBootstrapUI. navigate(String pathname, QueryParameters queryParameters) -
Uses of QueryParameters in com.vaadin.flow.component.webcomponent
Methods in com.vaadin.flow.component.webcomponent with parameters of type QueryParameters Modifier and Type Method Description voidWebComponentUI. navigate(String location, QueryParameters queryParameters) -
Uses of QueryParameters in com.vaadin.flow.router
Methods in com.vaadin.flow.router that return QueryParameters Modifier and Type Method Description static QueryParametersQueryParameters. empty()Creates an empty query parameters information.static QueryParametersQueryParameters. fromString(String queryString)Creates parameters from a query string.static QueryParametersQueryParameters. full(Map<String,String[]> parameters)Creates parameters from full representation, where each parameter name may correspond to multiple values.QueryParametersLocation. getQueryParameters()Gets the request parameters used for current location.static QueryParametersLocationUtil. parseQueryParameters(String location)Parses query parameters from the given location.static QueryParametersQueryParameters. simple(Map<String,String> parameters)Creates parameters from simple representation, where each parameter name corresponds to a single value.Methods in com.vaadin.flow.router that return types with arguments of type QueryParameters Modifier and Type Method Description Optional<QueryParameters>RouterLink. getQueryParameters()Gets theQueryParametersof this link.Methods in com.vaadin.flow.router with parameters of type QueryParameters Modifier and Type Method Description voidRouterLink. setQueryParameters(QueryParameters queryParameters)Sets theQueryParametersof this link.Constructors in com.vaadin.flow.router with parameters of type QueryParameters Constructor Description Location(String location, QueryParameters queryParameters)Creates a newLocationobject for given location string and query parameters.Location(List<String> segments, QueryParameters queryParameters)Creates a new location based on a list of path segments and query parameters.
-