Interface Person.FamilyMemberPerson

All Superinterfaces:
Person.RelatedPerson
Enclosing interface:
Person

public static interface Person.FamilyMemberPerson extends Person.RelatedPerson
Information on a person's family member.
  • Method Details

    • startDate

      Optional<LocalDate> startDate()
      The date when this related person started being a family member of the person. This field should in principle always be present, but it's technically possible for it to be missing from a document.
      Throws:
      DateTimeParseException - in case it's an incomplete date.
    • endDate

      Optional<LocalDate> endDate()
      The date when this related person ceased to be a family member of the person. If there is no end date, then they're still a family member of the person to this day.
      Throws:
      DateTimeParseException - in case it's an incomplete date.