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

cn.featherfly.common.net.http.HttpMethod Maven / Gradle / Ivy


package cn.featherfly.common.net.http;

/**
 * 

* HttpMethod *

*

* copyright featherfly 2010-2020, all rights reserved. *

* * @author 钟冀 */ public enum HttpMethod { /** * post */ POST, /** * get */ GET, /** * put */ PUT, /** * delete */ DELETE, /** * OPTIONS */ OPTIONS, /** * HEAD */ HEAD, /** * TRACE */ TRACE, /** * CONNECT */ CONNECT, /** * PATCH */ PATCH }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy