All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.apimatic.coreinterfaces.http.Method Maven / Gradle / Ivy

Go to download

An abstract layer of the functionalities provided by apimatic-core-library, okhttp-client-adapter and APIMatic SDKs.

There is a newer version: 0.3.1
Show newest version
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;
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy