If you think the Android project androidata listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
package com.stanidesis.androidata.column;
//www.java2s.com/**
* Booleans are stored in SQLite with INTEGER affinity, this
* class attempts to abstract that.
*
* Created by Stanley Idesis on 11/1/14.
*
* @since v1.0.5
* @see com.stanidesis.androidata.column.IntegerColumn
*/publicclass BooleanColumn extends IntegerColumn {
publicstaticfinallong TRUE = 1l;
publicstaticfinallong FALSE = 0l;
public BooleanColumn(String name, boolean defaultValue) {
super(name, defaultValue ? TRUE : FALSE);
}
public BooleanColumn(String name, boolean defaultValue, boolean isPrimaryKey, boolean autoIncrement) {
super(name, defaultValue ? TRUE : FALSE, isPrimaryKey, autoIncrement);
}
}