Home | History | Annotate | Download | only in model

Lines Matching refs:rawContact

36  * RawContact represents a single raw contact in the raw contacts database. It has specialized
38 * RawContact contains the information from a single account.
40 * <p>This allows RawContact objects to be thought of as a class with raw contact fields (like
44 public final class RawContact implements Parcelable {
47 public static final Parcelable.Creator<RawContact> CREATOR =
48 new Parcelable.Creator<RawContact>() {
51 public RawContact createFromParcel(Parcel parcel) {
52 return new RawContact(parcel);
56 public RawContact[] newArray(int i) {
57 return new RawContact[i];
65 /** A RawContact object can be created with or without a context. */
66 public RawContact() {
70 public RawContact(ContentValues values) {
80 private RawContact(Parcel parcel) {
86 public static RawContact createFrom(Entity entity) {
90 RawContact rawContact = new RawContact(values);
92 rawContact.addNamedDataItemValues(subValue.uri, subValue.values);
94 return rawContact;
256 sb.append("RawContact: ").append(mValues);
257 for (RawContact.NamedDataItem namedDataItem : mDataItems) {
278 RawContact other = (RawContact) obj;