//pass configuration
String road = "Gartenstra�e";
String houseNumber = "12A";
String location = "Leverkusen";
String postalNumber = "79348";
Country ccountry = Country.GERMANY;
String scountry = null;
if (new AddressChecker(road, houseNumber, location, postalNumber, ccountry).check() != true ||
new AddressChecker(road, houseNumber, location, postalNumber, scountry).check() != true){
throw new Exception("valid Address configuration declared invalid");
}