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

com.azure.core.http.HttpMethod Maven / Gradle / Ivy

There is a newer version: 1.54.1
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.core.http;

/**
 * The HTTP request methods.
 */
public enum HttpMethod {
    /**
     * The HTTP GET method.
     */
    GET,

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

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

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

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

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

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

    /**
     * The HTTP TRACE method.
     */
    TRACE,

    /**
     * The HTTP CONNECT method.
     */
    CONNECT
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy