Class CountryBankAccountData
- java.lang.Object
-
- de.knightsoftnet.validators.shared.data.CountryBankAccountData
-
- All Implemented Interfaces:
Serializable,Comparable<CountryBankAccountData>
public class CountryBankAccountData extends Object implements Comparable<CountryBankAccountData>, Serializable
country and bank account data.- Author:
- Manfred Tremmel
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CountryBankAccountData()default constructor.CountryBankAccountData(CountryEnum pcountryCode, String pbankAccount)constructor initializing fields.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(CountryBankAccountData pcompare)booleanequals(Object pobj)StringgetBankAccount()CountryEnumgetCountryCode()inthashCode()voidsetBankAccount(String bankAccount)voidsetCountryCode(CountryEnum countryCode)
-
-
-
Constructor Detail
-
CountryBankAccountData
public CountryBankAccountData()
default constructor.
-
CountryBankAccountData
public CountryBankAccountData(CountryEnum pcountryCode, String pbankAccount)
constructor initializing fields.- Parameters:
pcountryCode- country codepbankAccount- bank account
-
-
Method Detail
-
getCountryCode
public CountryEnum getCountryCode()
-
setCountryCode
public void setCountryCode(CountryEnum countryCode)
-
getBankAccount
public String getBankAccount()
-
setBankAccount
public void setBankAccount(String bankAccount)
-
compareTo
public int compareTo(CountryBankAccountData pcompare)
- Specified by:
compareToin interfaceComparable<CountryBankAccountData>
-
-