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

com.aventstack.chaintest.http.HttpMethod Maven / Gradle / Ivy

The newest version!
package com.aventstack.chaintest.http;

public enum HttpMethod {

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

    private final String _method;

    HttpMethod(final String method) {
        _method = method;
    }

    public String getMethod() {
        return _method;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy