How to find if IBAN is SEPA?
fiddleatwork opened this issue · 2 comments
fiddleatwork commented
In the examples there is:
String candidate = "GB29 NWBK 6016 1331 9268 19";
// You can query whether an IBAN is of a SEPA-participating country
boolean isSepa = candidate.isSEPA(); // true
But something is missing. I cannot find a isSEPA method in the IBAN class or anywhere else. Is this possible?
barend commented
The isSEPA()
query method is not part of the 1.1 release yet, you'd have to build the 1.2-SNAPSHOT version from source code to get access to it. I'll try and get that 1.2 release out the door soonish, possibly next week.
fiddleatwork commented
Thanks for the reply. I built 1.2 and am using the isSEPA method.