Interface Name


public interface Name
This interface can be used to identify a class that contains information about a person's name. Setters are not included but may be added by implementing classes.
Author:
rdoherty
  • Method Details

    • getFirstName

      String getFirstName()
      Returns:
      first name
    • getMiddleName

      String getMiddleName()
      Returns:
      middle name
    • getLastName

      String getLastName()
      Returns:
      last name
    • getSuffix

      NameSuffix getSuffix()
      Returns:
      suffix
    • getFullName

      String getFullName()
      Aggregates other name data into a human-readable string. Typically this can be implemented by returning simply DataFormats.getFullName(this).
      Returns:
      full name