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

com.iwbfly.myhttp.HttpMethod Maven / Gradle / Ivy

The newest version!
package com.iwbfly.myhttp;

public enum HttpMethod {
    GET("GET"),
    POST("POST"),
    PUT("PUT"),
    PATCH("PATCH"),
    DELETE("DELETE"),
    HEAD("HEAD"),
    CONNECT("CONNECT"),
    OPTIONS("OPTIONS"),
    TRACE("TRACE");

    private String value;

    HttpMethod(String value){
        this.value = value;
    }

    public String value(){
        return this.value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy