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

hope.kola.contract.api.HttpMethod Maven / Gradle / Ivy

There is a newer version: 1.1.2-RELEASE
Show newest version
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