Uses of Enum Class
org.springframework.web.bind.annotation.RequestMethod
Packages that use RequestMethod
Package
Description
Annotations for binding requests to controllers and handler methods
as well as for binding request parameters to method arguments.
RequestCondition
and implementations for matching requests based on different criteria.Infrastructure for handler method processing.
Common MVC logic for matching incoming requests based on conditions.
Servlet-based infrastructure for handler method processing,
building on the
org.springframework.web.method
package.-
Uses of RequestMethod in org.springframework.web.bind.annotation
Methods in org.springframework.web.bind.annotation that return RequestMethodModifier and TypeMethodDescriptionstatic RequestMethod
Resolve the given method value to anRequestMethod
enum value.static RequestMethod
RequestMethod.resolve
(HttpMethod httpMethod) Resolve the givenHttpMethod
to aRequestMethod
enum value.static RequestMethod
Returns the enum constant of this class with the specified name.static RequestMethod[]
RequestMethod.values()
Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of RequestMethod in org.springframework.web.reactive.result.condition
Methods in org.springframework.web.reactive.result.condition that return types with arguments of type RequestMethodModifier and TypeMethodDescriptionprotected Collection<RequestMethod>
RequestMethodsRequestCondition.getContent()
RequestMethodsRequestCondition.getMethods()
Returns allRequestMethods
contained in this condition.Constructors in org.springframework.web.reactive.result.condition with parameters of type RequestMethodModifierConstructorDescriptionRequestMethodsRequestCondition
(RequestMethod... requestMethods) Create a new instance with the given request methods. -
Uses of RequestMethod in org.springframework.web.reactive.result.method
Methods in org.springframework.web.reactive.result.method with parameters of type RequestMethodModifier and TypeMethodDescriptionRequestMappingInfo.Builder.methods
(RequestMethod... methods) Set the request method conditions. -
Uses of RequestMethod in org.springframework.web.servlet.mvc.condition
Methods in org.springframework.web.servlet.mvc.condition that return types with arguments of type RequestMethodModifier and TypeMethodDescriptionprotected Collection<RequestMethod>
RequestMethodsRequestCondition.getContent()
RequestMethodsRequestCondition.getMethods()
Returns allRequestMethods
contained in this condition.Constructors in org.springframework.web.servlet.mvc.condition with parameters of type RequestMethodModifierConstructorDescriptionRequestMethodsRequestCondition
(RequestMethod... requestMethods) Create a new instance with the given request methods. -
Uses of RequestMethod in org.springframework.web.servlet.mvc.method
Methods in org.springframework.web.servlet.mvc.method with parameters of type RequestMethodModifier and TypeMethodDescriptionRequestMappingInfo.Builder.methods
(RequestMethod... methods) Set the request method conditions.