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