|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectezvcard.property.VCardProperty
ezvcard.property.SimpleProperty<String>
ezvcard.property.TextProperty
ezvcard.property.Language
public class Language
A language that the person speaks.
Code sample
VCard vcard = new VCard();
Language lang = new Language("en");
lang.setPref(1); //most preferred
vcard.addLanguage(lang);
lang = new Language("fr");
lang.setPref(2); //second-most preferred
vcard.addLanguage(lang);
Property name: LANG
Supported versions: 4.0
| Field Summary |
|---|
| Fields inherited from class ezvcard.property.SimpleProperty |
|---|
value |
| Fields inherited from class ezvcard.property.VCardProperty |
|---|
group, parameters |
| Constructor Summary | |
|---|---|
Language(String language)
Creates a language property. |
|
| Method Summary | |
|---|---|
Set<VCardVersion> |
_supportedVersions()
Gets the vCard versions that support this property. |
void |
addPid(int localId,
int clientPidMapRef)
Adds a PID value. |
String |
getAltId()
Gets the property's ALTID parameter. |
List<Integer[]> |
getPids()
Gets all PID values. |
Integer |
getPref()
Gets the preference value. |
String |
getType()
Gets the TYPE parameter. |
void |
removePids()
Removes all PID values. |
void |
setAltId(String altId)
Sets the property's ALTID parameter. |
void |
setPref(Integer pref)
Sets the preference value. |
void |
setType(String type)
Sets the TYPE parameter. |
| Methods inherited from class ezvcard.property.SimpleProperty |
|---|
_validate, getValue, setValue |
| Methods inherited from class ezvcard.property.VCardProperty |
|---|
addParameter, compareTo, getGroup, getParameter, getParameters, getParameters, getSupportedVersions, removeParameter, setGroup, setParameter, setParameters, validate |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public Language(String language)
language - the language (e.g. "en-ca")| Method Detail |
|---|
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 String getType()
Supported versions: 4.0
public void setType(String type)
Supported versions: 4.0
type - the TYPE value (this should be either "work" or "home") or
null to removepublic List<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 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)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||