public void setType(int type) {
   this.ntype = NumberType.fromInteger(type);
 }
 private void readFromParcel(Parcel in) {
   ntype = NumberType.fromInteger(in.readInt());
   number = in.readParcelable(SipUri.class.getClassLoader());
   category = in.readInt();
 }