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

org.macrocloud.kernel.security.provider.HttpMethod Maven / Gradle / Ivy

There is a newer version: 1.1.0-RELEASE
Show newest version
package org.macrocloud.kernel.security.provider;

/**
 * HttpMethod枚举类
 *
 */
public enum HttpMethod {

	/**
	 * 请求方法集合
	 */
	GET, HEAD, POST, PUT, PATCH, DELETE, OPTIONS, TRACE, ALL;

	/**
	 * 匹配枚举
	 */
	public static HttpMethod of(String method) {
		try {
			return valueOf(method);
		} catch (Exception exception) {
			return null;
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy