Uses of Class
org.springframework.web.servlet.mvc.condition.ParamsRequestCondition
Packages that use ParamsRequestCondition Package Description org.springframework.web.servlet.mvc.condition Common MVC logic for matching incoming requests based on conditions.org.springframework.web.servlet.mvc.method Servlet-based infrastructure for handler method processing, building on theorg.springframework.web.methodpackage.Uses of ParamsRequestCondition in org.springframework.web.servlet.mvc.condition
Methods in org.springframework.web.servlet.mvc.condition that return ParamsRequestCondition Modifier and Type Method Description ParamsRequestConditionParamsRequestCondition. combine(ParamsRequestCondition other)Returns a new instance with the union of the param expressions from "this" and the "other" instance.ParamsRequestConditionParamsRequestCondition. getMatchingCondition(HttpServletRequest request)Returns "this" instance if the request matches all param expressions; ornullotherwise.Methods in org.springframework.web.servlet.mvc.condition with parameters of type ParamsRequestCondition Modifier and Type Method Description ParamsRequestConditionParamsRequestCondition. combine(ParamsRequestCondition other)Returns a new instance with the union of the param expressions from "this" and the "other" instance.intParamsRequestCondition. compareTo(ParamsRequestCondition other, HttpServletRequest request)Compare to another condition based on parameter expressions.Uses of ParamsRequestCondition in org.springframework.web.servlet.mvc.method
Methods in org.springframework.web.servlet.mvc.method that return ParamsRequestCondition Modifier and Type Method Description ParamsRequestConditionRequestMappingInfo. getParamsCondition()Return the "parameters" condition of thisRequestMappingInfo; or instance with 0 parameter expressions (nevernull).Constructors in org.springframework.web.servlet.mvc.method with parameters of type ParamsRequestCondition Constructor Description RequestMappingInfo(String name, PatternsRequestCondition patterns, RequestMethodsRequestCondition methods, ParamsRequestCondition params, HeadersRequestCondition headers, ConsumesRequestCondition consumes, ProducesRequestCondition produces, RequestCondition<?> custom)RequestMappingInfo(PatternsRequestCondition patterns, RequestMethodsRequestCondition methods, ParamsRequestCondition params, HeadersRequestCondition headers, ConsumesRequestCondition consumes, ProducesRequestCondition produces, RequestCondition<?> custom)Creates a new instance with the given request conditions.