コード例 #1
0
 @Override
 public Short getAsShort(String key) {
   return contentValues.getAsShort(key);
 }
コード例 #2
0
 public Short getAsShort(String key, Short def) {
   return contentValues.containsKey(key) && contentValues.get(key) != null
       ? contentValues.getAsShort(key)
       : def;
 }