()
| 55 | } |
| 56 | |
| 57 | public String iban() { |
| 58 | List<String> countryCodes = new ArrayList<String>(countryCodeToBasicBankAccountNumberPattern.keySet()); |
| 59 | String randomCountryCode = countryCodes.get(faker.random().nextInt(countryCodes.size())); |
| 60 | return iban(randomCountryCode); |
| 61 | } |
| 62 | |
| 63 | public String iban(String countryCode) { |
| 64 | String basicBankAccountNumber = faker.regexify(countryCodeToBasicBankAccountNumberPattern.get(countryCode)); |