Uses of Class
org.springframework.web.reactive.result.condition.ParamsRequestCondition
Packages that use ParamsRequestCondition Package Description org.springframework.web.reactive.result.condition RequestConditionand implementations for matching requests based on different criteria.org.springframework.web.reactive.result.method Infrastructure for handler method processing.Uses of ParamsRequestCondition in org.springframework.web.reactive.result.condition
Methods in org.springframework.web.reactive.result.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(ServerWebExchange exchange)Returns "this" instance if the request matches all param expressions; ornullotherwise.Methods in org.springframework.web.reactive.result.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, ServerWebExchange exchange)Compare to another condition based on parameter expressions.Uses of ParamsRequestCondition in org.springframework.web.reactive.result.method
Methods in org.springframework.web.reactive.result.method that return ParamsRequestCondition Modifier and Type Method Description ParamsRequestConditionRequestMappingInfo. getParamsCondition()Returns the "parameters" condition of thisRequestMappingInfo; or instance with 0 parameter expressions, nevernull.Constructors in org.springframework.web.reactive.result.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.