|
||||||||||
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.UriProperty
ezvcard.property.OrgDirectory
public class OrgDirectory
Defines a URI representing the person's work place, which can be used to lookup information on the person's co-workers.
Code sample
VCard vcard = new VCard(); OrgDirectory orgDirectory = new OrgDirectory("http://www.company.com/staff"); vcard.addOrgDirectory(orgDirectory);
Property name: ORG-DIRECTORY
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 | |
---|---|
OrgDirectory(String uri)
|
Method Summary | |
---|---|
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. |
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 |
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 OrgDirectory(String uri)
uri
- the URIMethod Detail |
---|
public Set<VCardVersion> _supportedVersions()
VCardProperty
Gets 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 VCardProperty
public Integer getIndex()
VCardProperty
VCardParameters.setIndex(java.lang.Integer)
public void setIndex(Integer index)
VCardProperty
index
- 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()
VCardProperty
VCardParameters.getLanguage()
public void setLanguage(String language)
VCardProperty
language
- the language or null to removeVCardParameters.setLanguage(java.lang.String)
public Integer getPref()
VCardProperty
Gets 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)
VCardProperty
Sets 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 HasAltId
VCardParameters.getAltId()
public void setAltId(String altId)
HasAltId
Supported versions: 4.0
setAltId
in interface HasAltId
altId
- 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 |