Uses of Enum Class
org.springframework.web.bind.annotation.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
Modifier 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
Modifier and TypeMethodDescriptionprotected Collection<RequestMethod>
RequestMethodsRequestCondition.getContent()
RequestMethodsRequestCondition.getMethods()
Returns allRequestMethods
contained in this condition.ModifierConstructorDescriptionRequestMethodsRequestCondition
(RequestMethod... requestMethods) Create a new instance with the given request methods. -
Uses of RequestMethod in org.springframework.web.reactive.result.method
Modifier and TypeMethodDescriptionRequestMappingInfo.Builder.methods
(RequestMethod... methods) Set the request method conditions. -
Uses of RequestMethod in org.springframework.web.servlet.mvc.condition
Modifier and TypeMethodDescriptionprotected Collection<RequestMethod>
RequestMethodsRequestCondition.getContent()
RequestMethodsRequestCondition.getMethods()
Returns allRequestMethods
contained in this condition.ModifierConstructorDescriptionRequestMethodsRequestCondition
(RequestMethod... requestMethods) Create a new instance with the given request methods. -
Uses of RequestMethod in org.springframework.web.servlet.mvc.method
Modifier and TypeMethodDescriptionRequestMappingInfo.Builder.methods
(RequestMethod... methods) Set the request method conditions.