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.gendbhandler; // w w w . j a v a 2 s . com public @interface Attribute { public enum FieldType { /** */ P_BYTE, /** */ P_SHORT, /** */ P_INT, /** */ P_LONG, /** */ P_FLOAT, /** */ P_DOUBLE, /** */ P_CHAR, /** */ P_BOOLEAN, /** */ BYTE, /** */ SHORT, /** */ INTEGER, /** */ LONG, /** */ FLOAT, /** */ DOUBLE, /** */ CHAR, /** */ BOOLEAN, /** */ STRING, /** */ SERIALIZABLE, /** */ PARCELABLE, /** */ BLOB } boolean persistent() default true; boolean forDb() default true; boolean forParcel() default true; boolean forContentResolver() default true; boolean primaryKey() default false; long version() default 1; Class<?> customCoder() default Object.class; FieldType customDataType() default FieldType.STRING; String nullValue() default ""; }