public class Nickname extends TextListProperty implements HasAltId
Defines the person's nicknames.
Code sample
VCard vcard = new VCard();
Nickname nickname = new Nickname();
nickname.addValue("Ricky");
nickname.addValue("Bobby");
nickname.addValue("Ricky Bobby");
vcard.setNickname(nickname);
Property name: NICKNAME
Supported versions: 3.0, 4.0
valuesgroup, parameters| Constructor and Description |
|---|
Nickname() |
| Modifier and Type | Method and Description |
|---|---|
java.util.Set<VCardVersion> |
_supportedVersions()
Gets the vCard versions that support this property.
|
void |
addPid(int localId,
int clientPidMapRef)
Adds a PID value.
|
java.lang.String |
getAltId()
Gets the property's ALTID parameter.
|
java.lang.String |
getLanguage()
Gets the language that the property value is written in.
|
java.util.List<java.lang.Integer[]> |
getPids()
Gets all PID values.
|
java.lang.Integer |
getPref()
Gets the preference value.
|
java.lang.String |
getType()
Gets the TYPE parameter.
|
void |
removePids()
Removes all PID values.
|
void |
setAltId(java.lang.String altId)
Sets the property's ALTID parameter.
|
void |
setLanguage(java.lang.String language)
Sets the language that the property value is written in.
|
void |
setPref(java.lang.Integer pref)
Sets the preference value.
|
void |
setType(java.lang.String type)
Sets the TYPE parameter.
|
_validate, addValue, getValues, removeValueaddParameter, compareTo, getGroup, getParameter, getParameters, getParameters, getSupportedVersions, removeParameter, setGroup, setParameter, setParameters, validatepublic java.util.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 java.lang.String getType()
Supported versions: 4.0
public void setType(java.lang.String type)
Supported versions: 4.0
type - the TYPE value (this should be either "work" or "home") or
null to removepublic java.lang.String getLanguage()
VCardPropertyVCardParameters.getLanguage()public void setLanguage(java.lang.String language)
VCardPropertylanguage - the language or null to removeVCardParameters.setLanguage(java.lang.String)public java.util.List<java.lang.Integer[]> getPids()
VCardPropertyGets all PID values.
Supported versions: 4.0
VCardParameters.getPids()public void addPid(int localId,
int clientPidMapRef)
VCardPropertyAdds a PID value.
Supported versions: 4.0
localId - the local IDclientPidMapRef - the ID used to reference the property's globally
unique identifier in the CLIENTPIDMAP property.VCardParameters.addPid(int, int)public void removePids()
VCardPropertyRemoves all PID values.
Supported versions: 4.0
VCardParameters.removePids()public java.lang.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(java.lang.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 java.lang.String getAltId()
HasAltId
Supported versions: 4.0
getAltId in interface HasAltIdVCardParameters.getAltId()public void setAltId(java.lang.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.