Interface Person


public interface Person
Represents a person.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the contact information of the person.
    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.