Searched defs:getAsInteger (Results 1 - 2 of 2) sorted by relevance

/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
H A DValuesDelta.java121 public Integer getAsInteger(String key) { method in class:ValuesDelta
122 return getAsInteger(key, null);
125 public Integer getAsInteger(String key, Integer defaultValue) { method in class:ValuesDelta
127 return mAfter.getAsInteger(key);
129 return mBefore.getAsInteger(key);
551 return getAsInteger(ContactsContract.CommonDataKinds.Phone.TYPE);
567 return getAsInteger(ContactsContract.CommonDataKinds.Email.TYPE);
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DEntityDelta.java565 public Integer getAsInteger(String key) { method in class:EntityDelta.ValuesDelta
566 return getAsInteger(key, null);
569 public Integer getAsInteger(String key, Integer defaultValue) { method in class:EntityDelta.ValuesDelta
571 return mAfter.getAsInteger(key);
573 return mBefore.getAsInteger(key);

Completed in 73 milliseconds