-
- 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 String
holder
private final String
iban
public final static Parcelable.Creator<BankAccount>
CREATOR
-
Constructor Summary
Constructors Constructor Description BankAccount(String holder, String iban)
-
Method Summary
Modifier and Type Method Description String
getHolder()
Returns bank account holder. String
getIban()
Returns the IBAN (International Bank Account Number). int
describeContents()
void
writeToParcel(@NonNull() Parcel dest, int flags)
boolean
equals(Object o)
int
hashCode()
BankAccount
clone()
-
-
Method Detail
-
describeContents
int describeContents()
-
writeToParcel
void writeToParcel(@NonNull() Parcel dest, int flags)
-
hashCode
int hashCode()
-
clone
@NonNull() BankAccount clone()
-
-
-
-