Back to project page GenDbHandler.
The source code is released under:
Open Data Commons ? Public Domain Dedication & Licence (PDDL) Preamble The Open Data Commons ? Public Domain Dedication & Licence is a document intended to allow you to freely share, modify, an...
If you think the Android project GenDbHandler 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 net.cattaka.util.genparcelfunc; //from w ww.java2 s . c o m public @interface GenParcelFunc { enum NamingConventions { LOWER_CAMEL_CASE, // lowerCamelCase UPPER_CAMEL_CASE, // UpperCamelCase LOWER_COMPOSITE, // lower_composite UPPER_COMPOSITE, // UPPER_COMPOSITE } NamingConventions fieldNamingConventions() default NamingConventions.LOWER_CAMEL_CASE; }