-
- All Implemented Interfaces:
-
android.os.Parcelable
public class Customer implements Parcelable
The Customer holds the customer details.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classCustomer.Builder
-
Method Summary
Modifier and Type Method Description StringgetGivenName()Returns the given name or first name of customer. StringgetSurname()Returns the last name or surname of customer. StringgetPhone()Returns the phone number of customer. StringgetEmail()Returns the email of customer. intdescribeContents()voidwriteToParcel(@NonNull() Parcel dest, int flags)booleanequals(Object o)inthashCode()-
-
Method Detail
-
getGivenName
@Nullable() String getGivenName()
Returns the given name or first name of customer.
-
getSurname
@Nullable() String getSurname()
Returns the last name or surname of customer.
-
describeContents
int describeContents()
-
writeToParcel
void writeToParcel(@NonNull() Parcel dest, int flags)
-
hashCode
int hashCode()
-
-
-
-