Class Name
- java.lang.Object
-
- com.broadleafcommerce.paypal.micro.gateway.domain.orders.Name
-
- All Implemented Interfaces:
Serializable
public class Name extends Object implements Serializable
- Author:
- Dima Myroniuk (dmyroniuk)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Name()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFullName()When the party is a person, the party's full name.StringgetGivenName()When the party is a person, the party's given, or first, name.StringgetMiddleName()When the party is a person, the party's middle name.StringgetPrefix()The prefix, or title, to the party's name.StringgetSuffix()The suffix for the party's name.StringgetSurname()When the party is a person, the party's surname or family name.voidsetFullName(String fullName)When the party is a person, the party's full name.voidsetGivenName(String givenName)When the party is a person, the party's given, or first, name.voidsetMiddleName(String middleName)When the party is a person, the party's middle name.voidsetPrefix(String prefix)The prefix, or title, to the party's name.voidsetSuffix(String suffix)The suffix for the party's name.voidsetSurname(String surname)When the party is a person, the party's surname or family name.
-
-
-
Method Detail
-
setFullName
public void setFullName(String fullName)
When the party is a person, the party's full name.
-
setGivenName
public void setGivenName(String givenName)
When the party is a person, the party's given, or first, name.
-
setMiddleName
public void setMiddleName(String middleName)
When the party is a person, the party's middle name. Use also to store multiple middle names including the patronymic, or father's, middle name.
-
setPrefix
public void setPrefix(String prefix)
The prefix, or title, to the party's name.
-
setSuffix
public void setSuffix(String suffix)
The suffix for the party's name.
-
setSurname
public void setSurname(String surname)
When the party is a person, the party's surname or family name. Also known as the last name. Required when the party is a person. Use also to store multiple surnames including the matronymic, or mother's, surname.
-
getFullName
public String getFullName()
When the party is a person, the party's full name.
-
getGivenName
public String getGivenName()
When the party is a person, the party's given, or first, name.
-
getMiddleName
public String getMiddleName()
When the party is a person, the party's middle name. Use also to store multiple middle names including the patronymic, or father's, middle name.
-
getPrefix
public String getPrefix()
The prefix, or title, to the party's name.
-
getSuffix
public String getSuffix()
The suffix for the party's name.
-
getSurname
public String getSurname()
When the party is a person, the party's surname or family name. Also known as the last name. Required when the party is a person. Use also to store multiple surnames including the matronymic, or mother's, surname.
-
-