Uses of Enum Class
io.john.amiscaray.quak.http.request.RequestMethod
Packages that use RequestMethod
-
Uses of RequestMethod in io.john.amiscaray.quak.http.request
Methods in io.john.amiscaray.quak.http.request that return RequestMethodModifier and TypeMethodDescriptionDynamicPathRequest.method()Returns the value of themethodrecord component.Request.method()RequestMapping.method()Returns the value of themethodrecord component.SimpleRequest.method()Returns the value of themethodrecord component.static RequestMethodReturns 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.Constructors in io.john.amiscaray.quak.http.request with parameters of type RequestMethodModifierConstructorDescriptionDynamicPathRequest(RequestMethod method, Map<String, String> pathVariables, T body) Create a DynamicPathRequest with empty headers, query params, and attributes.DynamicPathRequest(Map<String, String> headers, RequestMethod method, Map<String, String> pathVariables, T body) Create a DynamicPathRequest with empty query params, and attributes.DynamicPathRequest(Map<String, String> headers, Map<String, String> queryParams, RequestMethod method, Map<String, String> pathVariables, T body, Map<String, Object> attributes) Creates an instance of aDynamicPathRequestrecord class.RequestMapping(RequestMethod method, String url) Creates an instance of aRequestMappingrecord class.SimpleRequest(RequestMethod method, T body) Create a SimpleRequest with empty headers, query params, and attributes.SimpleRequest(Map<String, String> headers, RequestMethod method, T body) Create a SimpleRequest with empty queryParams and no attributes.SimpleRequest(Map<String, String> headers, Map<String, String> queryParams, RequestMethod method, T body, Map<String, Object> attributes) Creates an instance of aSimpleRequestrecord class. -
Uses of RequestMethod in io.john.amiscaray.quak.web.servlet
Constructor parameters in io.john.amiscaray.quak.web.servlet with type arguments of type RequestMethodModifierConstructorDescriptionHttpController(String urlPattern, Map<RequestMethod, PathController<?, ?>> pathControllers)