ezvcard.property
Class Organization

java.lang.Object
  extended by ezvcard.property.VCardProperty
      extended by ezvcard.property.ListProperty<String>
          extended by ezvcard.property.TextListProperty
              extended by ezvcard.property.Organization
All Implemented Interfaces:
HasAltId, Comparable<VCardProperty>

public class Organization
extends TextListProperty
implements HasAltId

A list of organizations the person belongs to. The list is ordered. It starts with the broadest organization and ends with the most specific.

Code sample

 VCard vcard = new VCard();
 Organization org = new Organization();
 org.addValue("Google");
 org.addValue("GMail Team");
 org.addValue("Spam Detection Team");
 vcard.setOrganizations(org);
 

Property name: ORG

Supported versions: 2.1, 3.0, 4.0

Author:
Michael Angstadt

Field Summary
 
Fields inherited from class ezvcard.property.ListProperty
values
 
Fields inherited from class ezvcard.property.VCardProperty
group, parameters
 
Constructor Summary
Organization()
           
 
Method Summary
 void addPid(int localId, int clientPidMapRef)
           Adds a PID value.
 String getAltId()
          Gets the property's ALTID parameter.
 String getLanguage()
          Gets the language that the property value is written in.
 List<Integer[]> getPids()
           Gets all PID values.
 Integer getPref()
           Gets the preference value.
 List<String> getSortAs()
          Gets the string(s) that define how to sort the vCard.
 String getType()
          Gets the TYPE parameter.
 void removePids()
           Removes all PID values.
 void setAltId(String altId)
          Sets the property's ALTID parameter.
 void setLanguage(String language)
          Sets the language that the property value is written in.
 void setPref(Integer pref)
           Sets the preference value.
 void setSortAs(String... names)
          Sets the string(s) that define how to sort the vCard.
 void setType(String type)
          Sets the TYPE parameter.
 
Methods inherited from class ezvcard.property.ListProperty
_validate, addValue, getValues, removeValue
 
Methods inherited from class ezvcard.property.VCardProperty
_supportedVersions, 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

Organization

public Organization()
Method Detail

getLanguage

public String getLanguage()
Description copied from class: VCardProperty
Gets the language that the property value is written in.

Returns:
the language or null if not set
See Also:
VCardParameters.getLanguage()

setLanguage

public void setLanguage(String language)
Description copied from class: VCardProperty
Sets the language that the property value is written in.

Parameters:
language - the language or null to remove
See Also:
VCardParameters.setLanguage(java.lang.String)

getType

public String getType()
Gets the TYPE parameter.

Supported versions: 4.0

Returns:
the TYPE value (typically, this will be either "work" or "home") or null if it doesn't exist

setType

public void setType(String type)
Sets the TYPE parameter.

Supported versions: 4.0

Parameters:
type - the TYPE value (this should be either "work" or "home") or null to remove

getPids

public List<Integer[]> getPids()
Description copied from class: VCardProperty

Gets all PID values.

Supported versions: 4.0

Returns:
the PID values or empty set if there are none
See Also:
VCardParameters.getPids()

addPid

public void addPid(int localId,
                   int clientPidMapRef)
Description copied from class: VCardProperty

Adds a PID value.

Supported versions: 4.0

Parameters:
localId - the local ID
clientPidMapRef - the ID used to reference the property's globally unique identifier in the CLIENTPIDMAP property.
See Also:
VCardParameters.addPid(int, int)

removePids

public void removePids()
Description copied from class: VCardProperty

Removes all PID values.

Supported versions: 4.0

See Also:
VCardParameters.removePids()

getPref

public Integer getPref()
Description copied from class: 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

Returns:
the preference value or null if it doesn't exist
See Also:
VCardParameters.getPref()

setPref

public void setPref(Integer pref)
Description copied from class: 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

Parameters:
pref - the preference value or null to remove
See Also:
VCardParameters.setPref(java.lang.Integer)

getAltId

public String getAltId()
Description copied from interface: HasAltId
Gets the property's ALTID parameter.

Supported versions: 4.0

Specified by:
getAltId in interface HasAltId
Returns:
the ALTID or null if it doesn't exist
See Also:
VCardParameters.getAltId()

setAltId

public void setAltId(String altId)
Description copied from interface: HasAltId
Sets the property's ALTID parameter.

Supported versions: 4.0

Specified by:
setAltId in interface HasAltId
Parameters:
altId - the ALTID or null to remove
See Also:
VCardParameters.setAltId(java.lang.String)

getSortAs

public List<String> getSortAs()
Gets the string(s) that define how to sort the vCard.

2.1 and 3.0 vCards should use the SORT-STRING property instead.

Supported versions: 4.0

Returns:
the sort string(s) or empty list if there are none
See Also:
VCardParameters.getSortAs()

setSortAs

public void setSortAs(String... names)
Sets the string(s) that define how to sort the vCard. These strings correspond to the values that are in this property.

2.1 and 3.0 vCards should use the SORT-STRING property instead.

Supported versions: 4.0

Parameters:
names - the names or empty parameter list to remove
See Also:
VCardParameters.setSortAs(java.lang.String...)


Copyright © 2012-2014 Michael Angstadt. All Rights Reserved.