Home | History | Annotate | Download | only in model

Lines Matching refs:rawContact

40  * RawContact represents a single raw contact in the raw contacts database.
42 * items, and also contains a collection of DataItem objects. A RawContact contains the information
45 * This allows RawContact objects to be thought of as a class with raw contact
50 final public class RawContact implements Parcelable {
123 public static RawContact createFrom(Entity entity) {
127 RawContact rawContact = new RawContact(values);
129 rawContact.addNamedDataItemValues(subValue.uri, subValue.values);
131 return rawContact;
135 * A RawContact object can be created with or without a context.
137 public RawContact() {
141 public RawContact(ContentValues values) {
151 private RawContact(Parcel parcel) {
171 public static final Parcelable.Creator<RawContact> CREATOR
172 = new Parcelable.Creator<RawContact>() {
175 public RawContact createFromParcel(Parcel parcel) {
176 return new RawContact(parcel);
180 public RawContact[] newArray(int i) {
181 return new RawContact[i];
346 sb.append("RawContact: ").append(mValues);
347 for (RawContact.NamedDataItem namedDataItem : mDataItems) {
364 RawContact other = (RawContact) obj;