com.vtence.molecule.http.HttpMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molecule Show documentation
Show all versions of molecule Show documentation
A web micro-framework for Java
package com.vtence.molecule.http;
public enum HttpMethod {
OPTIONS, GET, HEAD, POST, PUT, DELETE, PATCH;
public static boolean valid(String method) {
for (HttpMethod httpMethod : HttpMethod.values()) {
if (httpMethod.name().equalsIgnoreCase(method)) return true;
}
return false;
}
}