
com.harium.database.nosqlite.Data Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nosqlite-android Show documentation
Show all versions of nosqlite-android Show documentation
Sometimes you just need a simple key-value database
The newest version!
package com.harium.database.nosqlite;
public class Data {
public static final String TABLE_NAME = "collection";
public static final String COLUMN_KEY = "key";
public static final String COLUMN_VALUE = "value";
public static final String COLUMN_CREATED_AT = "created_at";
public static final String COLUMN_UPDATED_AT = "updated_at";
String key;
String value;
long createdAt;
long updatedAt;
public Data() {
super();
}
public Data(String key, String value) {
super();
this.key = key;
this.value = value;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public long getCreatedAt() {
return createdAt;
}
public void setCreatedAt(long createdAt) {
this.createdAt = createdAt;
}
public long getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(long updatedAt) {
this.updatedAt = updatedAt;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy