![JAR search and dependency download from the Maven repository](/logo.png)
com.twilio.sdk.http.HttpMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio-java-sdk Show documentation
Show all versions of twilio-java-sdk Show documentation
Java helper library for Twilio services
The newest version!
package com.twilio.sdk.http;
import com.fasterxml.jackson.annotation.JsonCreator;
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;
}
@JsonCreator
public static HttpMethod forValue(final String value) {
return HttpMethod.valueOf(value.toUpperCase());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy