
hope.kola.contract.api.HttpMethod Maven / Gradle / Ivy
package hope.kola.contract.api;
public enum HttpMethod {
GET("get"),
PUT("put"),
POST("post"),
DELETE("delete"),
HEAD("head"),
PATCH("patch");
private final String method;
HttpMethod(String method) {
this.method = method;
}
public String getMethod() {
return method;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy