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

com.joe.http.request.HttpMethod Maven / Gradle / Ivy

The newest version!
package com.joe.http.request;

/**
 * Http请求方法
 * @author joe
 *
 */
public enum HttpMethod {
                        GET("GET"), POST("POST"), PUT("PUT"), DELETE("DELETE");
    private String method;

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

    public String getMethod() {
        return this.method;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy