types()

my @types = $part->types();
or
my $types = $part->types();

This method will return an array or an array ref depending on the calling context of types associated with the $part.

is_type()

if($part->is_type($type) {
	# ...
}

Given a type (see types() for a list of possibilities) this method returns 1 if the $part is of that type or undef if it is not.

add_type()

$address->add_type('home');

Add a type to an address.

remove_type()

$address->remove_type('home');

This method removes a type from an address.

NAME

Text::vCard::Part - Perl extension for blah blah blah

SYNOPSIS

use Text::vCard::Part;
blah blah blah

DESCRIPTION

Stub documentation for Text::vCard::Part, created by h2xs. It looks like the author of the extension was negligent enough to leave the stub unedited.

Blah blah blah.

EXPORT

None by default.

AUTHOR

A. U. Thor, a.u.thor@a.galaxy.far.far.away

SEE ALSO

perl(1).