-
- All Implemented Interfaces:
-
android.os.Parcelable,java.lang.Cloneable
public class BankAccount implements Parcelable, Cloneable
Class to represent stored BankAccount payment information.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringholderprivate final Stringibanpublic final static Parcelable.Creator<BankAccount>CREATOR
-
Constructor Summary
Constructors Constructor Description BankAccount(String holder, String iban)
-
Method Summary
Modifier and Type Method Description StringgetHolder()Returns bank account holder. StringgetIban()Returns the IBAN (International Bank Account Number). intdescribeContents()voidwriteToParcel(@NonNull() Parcel dest, int flags)booleanequals(Object o)inthashCode()BankAccountclone()-
-
Method Detail
-
describeContents
int describeContents()
-
writeToParcel
void writeToParcel(@NonNull() Parcel dest, int flags)
-
hashCode
int hashCode()
-
clone
@NonNull() BankAccount clone()
-
-
-
-