io.apimatic.coreinterfaces.http.Method Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-interfaces Show documentation
Show all versions of core-interfaces Show documentation
An abstract layer of the functionalities provided by apimatic-core-library, okhttp-client-adapter and APIMatic SDKs.
package io.apimatic.coreinterfaces.http;
/**
* Enumeration Containing HttpMethods
*/
public interface Method {
/**
* Get Http Method
*/
Method GET = HttpMethodType.GET;
/**
* Post Http Method
*/
Method POST = HttpMethodType.POST;
/**
* Put Http Method
*/
Method PUT = HttpMethodType.PUT;
/**
* Patch Http Method
*/
Method PATCH = HttpMethodType.PATCH;
/**
* Get Delete Method
*/
Method DELETE = HttpMethodType.DELETE;
/**
* Head Http Method
*/
Method HEAD = HttpMethodType.HEAD;
}