Interface HasFirstAndLastName

All Known Implementing Classes:
ContactDto

public interface HasFirstAndLastName
entity/dto has firstName + lastName capability
  • Method Summary

    Modifier and Type
    Method
    Description
     
    default String
    combines first + last name
    will return null in case firstName & lastName is empty
     
  • Method Details

    • getFirstName

      @Nullable String getFirstName()
    • getLastName

      @Nullable String getLastName()
    • getFullName

      @Nullable default String getFullName()
      combines first + last name
      will return null in case firstName & lastName is empty