Package org.conical.common.bbl.util
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 Summary
Modifier and TypeMethodDescriptionAggregates other name data into a human-readable string. 
- 
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 simplyDataFormats.getFullName(this).- Returns:
 - full name
 
 
 -