public class Expertise extends TextProperty implements HasAltId
Defines a professional subject area that the person has knowledge of. For example, if the person is a software engineer, he or she might list technologies such as "Java", "Web services", and "Agile development practices".
Code sample
VCard vcard = new VCard();
Expertise expertise = new Expertise("Java programming");
expertise.setLevel(ExpertiseLevel.EXPERT);
vcard.addExpertise(expertise);
Property name: EXPERTISE
Supported versions: 4.0
valuegroup, parameters| Constructor and Description |
|---|
Expertise(String skill)
Creates an expertise property.
|
| Modifier and Type | Method and Description |
|---|---|
Set<VCardVersion> |
_supportedVersions()
Gets the vCard versions that support this property.
|
String |
getAltId()
Gets the property's ALTID parameter.
|
Integer |
getIndex()
Gets the sorted position of this property when it is grouped together
with other properties of the same type.
|
String |
getLanguage()
Gets the language that the property value is written in.
|
ExpertiseLevel |
getLevel()
Gets the level of knowledge the person has for this skill.
|
Integer |
getPref()
Gets the preference value.
|
String |
getType()
Gets the TYPE parameter.
|
void |
setAltId(String altId)
Sets the property's ALTID parameter.
|
void |
setIndex(Integer index)
Sets the sorted position of this property when it is grouped together
with other properties of the same type.
|
void |
setLanguage(String language)
Sets the language that the property value is written in.
|
void |
setLevel(ExpertiseLevel level)
Sets the level of knowledge the person has for this skill.
|
void |
setPref(Integer pref)
Sets the preference value.
|
void |
setType(String type)
Sets the TYPE parameter.
|
_validate, getValue, setValueaddParameter, compareTo, getGroup, getParameter, getParameters, getParameters, getSupportedVersions, removeParameter, setGroup, setParameter, setParameters, validatepublic Expertise(String skill)
skill - the skill (e.g. "Java programming")public Set<VCardVersion> _supportedVersions()
VCardPropertyGets the vCard versions that support this property.
This method should be overridden by child classes if the property does not support all vCard versions. The default implementation of this method returns all vCard versions.
_supportedVersions in class VCardPropertypublic ExpertiseLevel getLevel()
VCardParameters.getLevel()public void setLevel(ExpertiseLevel level)
level - the skill level (e.g. "beginner") or null to removeVCardParameters.setLevel(java.lang.String)public Integer getIndex()
VCardPropertyVCardParameters.setIndex(java.lang.Integer)public void setIndex(Integer index)
VCardPropertyindex - the index or null to removeVCardParameters.setIndex(java.lang.Integer)public String getType()
public void setType(String type)
type - the TYPE value (this should be either "work" or "home") or
null to removepublic String getLanguage()
VCardPropertyVCardParameters.getLanguage()public void setLanguage(String language)
VCardPropertylanguage - the language or null to removeVCardParameters.setLanguage(java.lang.String)public Integer getPref()
VCardPropertyGets the preference value. The lower the number, the more preferred this property instance is compared with other properties in the same vCard of the same type. If a property doesn't have a preference value, then it is considered the least preferred.
Supported versions: 4.0
VCardParameters.getPref()public void setPref(Integer pref)
VCardPropertySets the preference value. The lower the number, the more preferred this property instance is compared with other properties in the same vCard of the same type. If a property doesn't have a preference value, then it is considered the least preferred.
Supported versions: 4.0
pref - the preference value or null to removeVCardParameters.setPref(java.lang.Integer)public String getAltId()
HasAltId
Supported versions: 4.0
getAltId in interface HasAltIdVCardParameters.getAltId()public void setAltId(String altId)
HasAltId
Supported versions: 4.0
setAltId in interface HasAltIdaltId - the ALTID or null to removeVCardParameters.setAltId(java.lang.String)This software is published under the BSD license. Copyright © 2003-${build.year}, CRIXP AG, Switzerland, All rights reserved. Use is subject to license terms.