use of ezvcard.property.Expertise in project ez-vcard by mangstadt.
the class VCard method addExpertise.
/**
* <p>
* Adds a professional subject area that the person is knowledgeable in.
* </p>
* <p>
* <b>Property name:</b> {@code EXPERTISE}<br>
* <b>Supported versions:</b> {@code 4.0}
* </p>
* @param expertise the professional subject area to add (e.g.
* "programming")
* @return the property object that was created
* @see <a href="http://tools.ietf.org/html/rfc6715#page-3">RFC 6715 p.3</a>
*/
public Expertise addExpertise(String expertise) {
Expertise type = new Expertise(expertise);
addExpertise(type);
return type;
}
Aggregations