@SupportedVersions(value=V4_0) 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(Expertise original)
Copy constructor.
|
Expertise(String skill)
Creates an expertise property.
|
| Modifier and Type | Method and Description |
|---|---|
Expertise |
copy()
Creates a copy of this property object.
|
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 this property's 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 this property's preference value.
|
void |
setType(String type)
Sets the TYPE parameter.
|
_validate, equals, getValue, hashCode, setValue, toStringValuesaddParameter, compareTo, getGroup, getParameter, getParameters, getParameters, getSupportedVersions, isSupportedBy, removeParameter, setGroup, setParameter, setParameters, toString, validatepublic Expertise(String skill)
skill - the skill (e.g. "Java programming")public 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()
VCardPropertyGets the sorted position of this property when it is grouped together with other properties of the same type. Properties with low index values are put at the beginning of the sorted list. Properties with high index values are put at the end of the list.
Supported versions: 4.0
public void setIndex(Integer index)
VCardPropertySets the sorted position of this property when it is grouped together with other properties of the same type. Properties with low index values are put at the beginning of the sorted list. Properties with high index values are put at the end of the list.
Supported versions: 4.0
index - the index or null to removepublic String getType()
public void setType(String type)
type - the TYPE value (this should be either "work" or "home") or
null to removepublic String getLanguage()
VCardPropertypublic void setLanguage(String language)
VCardPropertylanguage - the language or null to removepublic Integer getPref()
VCardPropertyGets this property's preference value. The lower this number is, the more "preferred" the property instance is compared with other properties of the same type. If a property doesn't have a preference value, then it is considered the least preferred.
In the vCard below, the Address on the second row is the most
preferred because it has the lowest PREF value.
ADR;TYPE=work;PREF=2:;;1600 Amphitheatre Parkway;Mountain View;CA;94043 ADR;TYPE=work;PREF=1:;;One Microsoft Way;Redmond;WA;98052 ADR;TYPE=home:;;123 Maple St;Hometown;KS;12345
Supported versions: 4.0
public void setPref(Integer pref)
VCardPropertySets this property's preference value. The lower this number is, the more "preferred" the property instance is compared with other properties of the same type. If a property doesn't have a preference value, then it is considered the least preferred.
In the vCard below, the Address on the second row is the most
preferred because it has the lowest PREF value.
ADR;TYPE=work;PREF=2:;;1600 Amphitheatre Parkway;Mountain View;CA;94043 ADR;TYPE=work;PREF=1:;;One Microsoft Way;Redmond;WA;98052 ADR;TYPE=home:;;123 Maple St;Hometown;KS;12345
Supported versions: 4.0
pref - the preference value or null to removepublic 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)public Expertise copy()
VCardPropertyCreates a copy of this property object.
The default implementation of this method uses reflection to look for a copy constructor. Child classes SHOULD override this method to avoid the performance overhead involved in using reflection.
The child class's copy constructor, if present, MUST invoke the
VCardProperty.VCardProperty(VCardProperty) super constructor to ensure that
the group name and parameters are also copied.
This method MUST be overridden by the child class if the child class does
not have a copy constructor. Otherwise, an
UnsupportedOperationException will be thrown when an attempt is
made to copy the property (such as in the VCard
class's copy constructor).
copy in class VCardPropertyCopyright © 2012–2023 Michael Angstadt. All rights reserved.