com.sixestates.http.HttpMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of idp-sdk Show documentation
Show all versions of idp-sdk Show documentation
A Java SDK for communicating with the 6Estates Intelligent Document Processing(IDP) Platform
package com.sixestates.http;
public enum HttpMethod {
GET("GET"),
POST("POST"),
PUT("PUT"),
DELETE("DELETE"),
HEAD("HEAD"),
OPTIONS("OPTIONS");
private final String method;
HttpMethod(final String method) {
this.method = method;
}
public String toString() {
return method;
}
}