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 va 2s. c o m*/ /** * Enum for entity encoding formats do be used by POST and PUT methods. * * @author Hendrik.Stilke@siemens.com * */ public enum EntityFormatEnum { /** * Use application/x-www-urlformencoding */ FORMAT_URL_FORM_ENCODED, /** * Use json-encoded string */ FORMAT_JSON_ENCODED, /** * Use any */ UNDEFINED, }