Class BankAccount
-
- 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 public final Stringholderpublic 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
-
getHolder
@NonNull() String getHolder()
Returns bank account holder.
- Returns:
The bank account holder
-
getIban
@NonNull() String getIban()
Returns the IBAN (International Bank Account Number).
- Returns:
The IBAN
-
describeContents
int describeContents()
-
writeToParcel
void writeToParcel(@NonNull() Parcel dest, int flags)
-
hashCode
int hashCode()
-
clone
@NonNull() BankAccount clone()
-
-
-
-