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

io.github.wooenrico.http.common.Method Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package io.github.wooenrico.http.common;

/**
 * Http Method
 */
public enum Method {
    /**
     * GET
     */
    GET,
    /**
     * POST
     */
    POST,
    /**
     * HEAD
     */
    HEAD,
    /**
     * OPTIONS
     */
    OPTIONS,
    /**
     * PUT
     */
    PUT,
    /**
     * DELETE
     */
    DELETE,
    /**
     * TRACE
     */
    TRACE,
    /**
     * CONNECT
     */
    CONNECT,
    /**
     * PATCH
     */
    PATCH
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy