NAME

Text::vCard::Part::Name - Object to handle the name part of a vCard

DESCRIPTION

You should not need to access this object directly it will be created as required when you parse a vCard. - not fully implimented!

NAME DETAIL METHODS

Called without any arguments the following methods return a scalar containing the relevant information. This can be a list seperated by commas.

If supplied with a scalar argument the scalar will be set as the new value. If supplied with an array ref the values of the array ref will be joined with a comma and set as the new value.

family()

my $family = $address->family();
$address->family($family);
$address->family(\@family);

given()

 my $given = $address->given();
 $address->given($given);
 $address->given(\@given);

=head2 additional()

 my $additional = $address->additional();
 $address->additional($additional);
 $address->additional(\@additional);
 

prefixes()

my $prefixes = $address->prefixes();
$address->prefixes($prefixes);
$address->prefixes(\@prefixes);

suffixes()

my $suffixes = $address->suffixes();
$address->suffixes($suffixes);
$address->suffixes(\@suffixes);     

EXPORT

None by default.

AUTHOR

Leo Lapworth, LLAP@cuckoo.org

SEE ALSO

Text::vCard.