Back to project page android-http.
The source code is released under:
Apache License
If you think the Android project android-http listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.markom.android.http.model; //from w w w .j av a 2s . c om /** * Enumeration of available HTTP methods. Methods are following: * <li>GET</li> * <li>POST</li> * <li>PUT</li> * <li>DELETE</li> */ public enum HttpMethod { GET, POST, PUT, DELETE }