Back to project page ASQLDatabase.
The source code is released under:
GNU General Public License
If you think the Android project ASQLDatabase 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.mptr.asqldatabase; //w w w . ja v a 2s . c o m public enum JsonFieldName { JSON_POST_DATA("JsonPostData"); private final String postValName; private JsonFieldName(final String valueName) { this.postValName = valueName; } @Override public String toString() { return postValName; } }