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

com.volcengine.HttpMethod Maven / Gradle / Ivy

There is a newer version: 1.0.75
Show newest version
package com.volcengine;

/**
 * [email protected]
 * 2022/12/23 15:34
 */
public enum HttpMethod {
    GET("GET"),HEAD("HEAD"),POST("POST"),PUT("PUT"),DELETE("DELETE");
    private final String method;
    private HttpMethod(String method){
        this.method = method;
    }

    public  String GetMethod(){
        return method;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy