Back to project page YesNoGame.
The source code is released under:
GNU General Public License
If you think the Android project YesNoGame 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 example.swa.yesnogame.service.util; //w w w. ja v a 2s . c om public enum RequestMethodEnum { /** * Request method GET (find) */ METHOD_GET, /** * Request method PUT (update) */ METHOD_PUT, /** * Request method POST (create) */ METHOD_POST, /** * Request method DELETE (delete) */ METHOD_DELETE, /** * Request method POST PUT (does a PUT/update via a POST/create request) */ METHOD_POST_PUT, }