Methods Summary |
---|
public int | describeContents()
return 0;
|
public boolean | equals(java.lang.Object obj)
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
PrintJobId other = (PrintJobId) obj;
if (!TextUtils.equals(mValue, other.mValue)) {
return false;
}
return true;
|
public java.lang.String | flattenToString()Flattens this id to a string.
return mValue;
|
public int | hashCode()
final int prime = 31;
int result = 1;
result = prime * result + ((mValue != null) ? mValue.hashCode() : 0);
return result;
|
public static android.print.PrintJobId | unflattenFromString(java.lang.String string)Unflattens a print job id from a string.
return new PrintJobId(string);
|
public void | writeToParcel(android.os.Parcel parcel, int flags)
parcel.writeString(mValue);
|