cn.majingjing.http.client.request.RequestMethod Maven / Gradle / Ivy
The newest version!
package cn.majingjing.http.client.request;
/**
* 请求方式
*
* @author MaMarion
* @date 2020/4/24
*/
public enum RequestMethod {
/**
* GET
*/
GET,
/**
* POST
*/
POST,
/**
* PUT
*/
PUT,
/**
* DELETE
*/
DELETE
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy