Interface IMailAddress

All Known Implementing Classes:
MailAddress

public interface IMailAddress
Interface describing an email address.
Since:
6.4
Author:
Jon van Leuven
  • Method Summary

    Modifier and Type
    Method
    Description
    This method returns the address in RFC822 format.
    This method returns the domain part of the address.
    This method returns the display name of the email address.
  • Method Details

    • getPersonal

      String getPersonal()
      This method returns the display name of the email address.
      Returns:
      The person name, may be null.
    • getAddress

      String getAddress()
      This method returns the address in RFC822 format.
      Returns:
      The address in RFC822 format, may not be null
    • getAddressDomain

      String getAddressDomain()
      This method returns the domain part of the address.
      Returns:
      the domain part of the address.