Provide name information about a person.
A person may have more that one name throughout his or her life.
|
__init__(self,
source=None,
data=None)
Create a new Name instance, copying from the source if provided. |
source code
|
|
|
|
|
is_empty(self)
Indicate if the name is empty. |
source code
|
|
|
|
list
|
|
list
|
|
list
|
|
list
|
|
list
|
|
|
|
|
get_group_as(self)
Return the grouping name, which is used to group equivalent surnames. |
source code
|
|
|
get_group_name(self)
Return the grouping name, which is used to group equivalent surnames. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
set_type(self,
the_type)
Set the type of the Name instance. |
source code
|
|
|
get_type(self)
Return the type of the Name instance. |
source code
|
|
|
set_first_name(self,
name)
Set the given name for the Name instance. |
source code
|
|
|
set_patronymic(self,
name)
Set the patronymic name for the Name instance. |
source code
|
|
|
set_surname(self,
name)
Set the surname (or last name) for the Name instance. |
source code
|
|
|
set_suffix(self,
name)
Set the suffix (such as Jr., III, etc.) for the Name instance. |
source code
|
|
|
get_first_name(self)
Return the given name for the Name instance. |
source code
|
|
|
get_patronymic(self)
Return the patronymic name for the Name instance. |
source code
|
|
|
get_surname(self)
Return the surname (or last name) for the Name instance. |
source code
|
|
|
get_upper_surname(self)
Return the surname (or last name) for the Name instance. |
source code
|
|
|
get_suffix(self)
Return the suffix for the Name instance. |
source code
|
|
|
set_title(self,
title)
Set the title (Dr., Reverand, Captain) for the Name instance. |
source code
|
|
|
get_title(self)
Return the title for the Name instance. |
source code
|
|
|
get_name(self)
Return a name string built from the components of the Name instance,
in the form of surname, Firstname. |
source code
|
|
|
get_upper_name(self)
Return a name string built from the components of the Name instance,
in the form of surname, Firstname. |
source code
|
|
|
get_regular_name(self)
Return a name string built from the components of the Name instance,
in the form of Firstname surname. |
source code
|
|
Inherited from secondaryobj.SecondaryObject :
is_equal
Inherited from baseobj.BaseObject :
get_referenced_handles_recursively ,
matches_regexp ,
matches_string
Inherited from privacybase.PrivacyBase :
get_privacy ,
set_privacy
Inherited from srcbase.SourceBase :
add_source_reference ,
get_source_references ,
get_sourcref_child_list ,
has_source_reference ,
remove_source_references ,
replace_source_references ,
set_source_reference_list
Inherited from notebase.NoteBase :
add_note ,
get_note_list ,
get_referenced_note_handles ,
remove_note ,
set_note_list
Inherited from datebase.DateBase :
get_date_object ,
set_date_object
|