com.qcloud.cos.http.HttpMethod Maven / Gradle / Ivy
package com.qcloud.cos.http;
public enum HttpMethod {
GET("GET"),
POST("POST"),
PUT("PUT"),
DELETE("DELETE");
private String method;
private HttpMethod(String method) {
this.method = method;
}
@Override
public String toString() {
return this.method;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy