com.base4j.util.http.Method Maven / Gradle / Ivy
The newest version!
package com.base4j.util.http;
/**
* Http方法枚举
*
* @author Looly
*/
public enum Method {
/**
* 方法
*/
GET, POST, HEAD, OPTIONS, PUT, DELETE, TRACE, CONNECT;
}