Back to project page simple-sqlite.
The source code is released under:
Apache License
If you think the Android project simple-sqlite 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.aldobo.simple.sqlite.entities; /* w w w . j a v a 2 s . c om*/ public enum SQLiteDefaultValue { CURRENT_TIMESTAMP("CURRENT_TIMESTAMP"), CURRENT_TIME("CURRENT_TIME"), CURRENT_DATE("CURRENT_DATE"), NONE(null); private String mSqliteRepresentation; public String getSQliteRepresentation() { return mSqliteRepresentation; } private SQLiteDefaultValue(String sqliteRepresentation) { mSqliteRepresentation = sqliteRepresentation; } @Override public String toString() { return mSqliteRepresentation; } }