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

/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
H A DValuesDelta.java123 public Integer getAsInteger(String key) { method in class:ValuesDelta
124 return getAsInteger(key, null);
127 public Integer getAsInteger(String key, Integer defaultValue) { method in class:ValuesDelta
129 return mAfter.getAsInteger(key);
131 return mBefore.getAsInteger(key);
575 return getAsInteger(ContactsContract.CommonDataKinds.Phone.TYPE);
591 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 123 milliseconds