- getAddressParts(String, EnumSet<EmailAddressCriteria>, boolean) - Static method in class org.hazlewood.connor.bottema.emailaddress.EmailAddressParser
-
See getInternetAddress; does the same thing but returns the constituent parts of the address in a three-element array (or null if the address is
invalid).
- getDomain(String, EnumSet<EmailAddressCriteria>, boolean) - Static method in class org.hazlewood.connor.bottema.emailaddress.EmailAddressParser
-
See getInternetAddress; does the same thing but returns the domain part in string form (essentially, the part to the right of the @).
- getFirstComment(String, EnumSet<EmailAddressCriteria>) - Static method in class org.hazlewood.connor.bottema.emailaddress.EmailAddressParser
-
Given a string, extract the first matched comment token as defined in 2822, trimmed; return null on all errors or non-findings
- getInternetAddress(String, EnumSet<EmailAddressCriteria>, boolean) - Static method in class org.hazlewood.connor.bottema.emailaddress.EmailAddressParser
-
Given a 2822-valid single address string, give us an InternetAddress object holding that address, otherwise returns null.
- getLocalPart(String, EnumSet<EmailAddressCriteria>, boolean) - Static method in class org.hazlewood.connor.bottema.emailaddress.EmailAddressParser
-
See getInternetAddress; does the same thing but returns the local part that would have been returned from getInternetAddress() in String form
(essentially, the part to the left of the @).
- getMatcherParts(Matcher, EnumSet<EmailAddressCriteria>, boolean) - Static method in class org.hazlewood.connor.bottema.emailaddress.EmailAddressParser
-
- getPersonalName(String, EnumSet<EmailAddressCriteria>, boolean) - Static method in class org.hazlewood.connor.bottema.emailaddress.EmailAddressParser
-
See getInternetAddress; does the same thing but returns the personal name that would have been returned from getInternetAddress() in String form.
- getReturnPathAddress(String, EnumSet<EmailAddressCriteria>, boolean) - Static method in class org.hazlewood.connor.bottema.emailaddress.EmailAddressParser
-
Pull out the cleaned-up return path address.
- getReturnPathBracketContents(String, EnumSet<EmailAddressCriteria>) - Static method in class org.hazlewood.connor.bottema.emailaddress.EmailAddressParser
-
WARNING: You may want to use getReturnPathAddress() instead if you're looking for a clean version of the return path without CFWS, etc.