Interface Person


public interface Person
Represents a person.
  • Method Summary

    Modifier and Type Method Description
    ContactInformation getContact()
    Returns the contact information of the person.
    String getName()
    Returns the display name of the person.
  • Method Details

    • getName

      String getName()
      Returns the display name of the person.
    • getContact

      ContactInformation getContact()
      Returns the contact information of the person.