Uses of Class
org.springframework.web.reactive.result.condition.RequestMethodsRequestCondition
Packages that use RequestMethodsRequestCondition
Package
Description
RequestCondition
and implementations for matching requests based on different criteria.Infrastructure for handler method processing.
-
Uses of RequestMethodsRequestCondition in org.springframework.web.reactive.result.condition
Subclasses with type arguments of type RequestMethodsRequestCondition in org.springframework.web.reactive.result.conditionModifier and TypeClassDescriptionfinal classA logical disjunction (' || ') request condition that matches a request against a set ofRequestMethods.Methods in org.springframework.web.reactive.result.condition that return RequestMethodsRequestConditionModifier and TypeMethodDescriptionRequestMethodsRequestCondition.combine(RequestMethodsRequestCondition other) Returns a new instance with a union of the HTTP request methods from "this" and the "other" instance.RequestMethodsRequestCondition.getMatchingCondition(ServerWebExchange exchange) Check if any of the HTTP request methods match the given request and return an instance that contains the matching HTTP request method only.Methods in org.springframework.web.reactive.result.condition with parameters of type RequestMethodsRequestConditionModifier and TypeMethodDescriptionRequestMethodsRequestCondition.combine(RequestMethodsRequestCondition other) Returns a new instance with a union of the HTTP request methods from "this" and the "other" instance.intRequestMethodsRequestCondition.compareTo(RequestMethodsRequestCondition other, ServerWebExchange exchange) Returns: 0 if the two conditions contain the same number of HTTP request methods Less than 0 if "this" instance has an HTTP request method but "other" doesn't Greater than 0 "other" has an HTTP request method but "this" doesn't -
Uses of RequestMethodsRequestCondition in org.springframework.web.reactive.result.method
Methods in org.springframework.web.reactive.result.method that return RequestMethodsRequestConditionModifier and TypeMethodDescriptionRequestMappingInfo.getMethodsCondition()Returns the HTTP request methods of thisRequestMappingInfo; or instance with 0 request methods, nevernull.