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

com.box.sdk.http.HttpMethod Maven / Gradle / Ivy

There is a newer version: 4.11.1
Show newest version
package com.box.sdk.http;

/**
 * HTTP method constants.
 */
public enum HttpMethod {
    /**
     * HTTP GET method.
     */
    GET,

    /**
     * HTTP HEAD method.
     */
    HEAD,

    /**
     * HTTP POST method.
     */
    POST,

    /**
     * HTTP PUT method.
     */
    PUT,

    /**
     * HTTP PATCH method.
     */
    PATCH,

    /**
     * HTTP DELETE method.
     */
    DELETE,

    /**
     * HTTP OPTIONS method.
     */
    OPTIONS,

    /**
     * HTTP TRACE method.
     */
    TRACE;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy