* @param vat The VAT number we are validating
* @return Whether or not this VAT number ir valid in the specified country
*/
public static boolean testCountryNif(String country, String vat) {
ValidationRoutine routine = (ValidationRoutine) VALIDATORS.get(country);
if (routine == null)
return false;
return routine.check(vat);
}