@Override public Byte getAsByte(String key) { return contentValues.getAsByte(key); }
public Byte getAsByte(String key, Byte def) { return contentValues.containsKey(key) && contentValues.get(key) != null ? contentValues.getAsByte(key) : def; }