io.apimatic.coreinterfaces.http.Method Maven / Gradle / Ivy
package io.apimatic.coreinterfaces.http;
/**
* Enumeration Containing HttpMethods
*
*/
public interface Method {
final Method GET = HttpMethodType.GET;
final Method POST = HttpMethodType.POST;
final Method PUT = HttpMethodType.PUT;
final Method PATCH = HttpMethodType.PATCH;
final Method DELETE = HttpMethodType.DELETE;
final Method HEAD = HttpMethodType.HEAD;
}