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

com.github.libgraviton.gdk.api.HttpMethod Maven / Gradle / Ivy

package com.github.libgraviton.gdk.api;

public enum HttpMethod {

    OPTIONS ("OPTIONS"),
    HEAD ("HEAD"),
    GET ("GET"),
    POST ("POST"),
    PUT ("PUT"),
    PATCH ("PATCH"),
    DELETE ("DELETE");

    private String method;

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

    public String asString() {
        return method;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy