* @return an <code>Address</code> object for the specified string.
* @throws IllegalArgumentException
* if the raw string does not represent a single address.
*/
public static Address parse(String rawAddressString) {
AddressListParser parser = new AddressListParser(new StringReader(
rawAddressString));
try {
return Builder.getInstance().buildAddress(parser.parseAddress());
} catch (ParseException e) {
throw new IllegalArgumentException(e);
}
}