|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectezvcard.types.VCardType
ezvcard.types.TextListType
ezvcard.types.OrganizationType
public class OrganizationType
A list of organizations the person belongs to. The list is ordered. It starts with the broadest organization and ends with the most specific.
VCard vcard = new VCard();
OrganizationType org = new OrganizationType();
org.addValue("Google");
org.addValue("GMail Team");
org.addValue("Spam Detection Team");
vcard.setOrganizations(org);
vCard property name: ORG
vCard versions: 2.1, 3.0, 4.0
| Field Summary | |
|---|---|
static String |
NAME
|
| Fields inherited from class ezvcard.types.TextListType |
|---|
values |
| Fields inherited from class ezvcard.types.VCardType |
|---|
group, subTypes, typeName |
| Constructor Summary | |
|---|---|
OrganizationType()
|
|
| Method Summary | |
|---|---|
void |
addPid(int localId,
int clientPidMapRef)
Adds a PID value. |
protected void |
doUnmarshalHtml(HCardElement element,
List<String> warnings)
Unmarshals the type from an hCard (HTML document). |
String |
getAltId()
Gets the ALTID. |
String |
getLanguage()
Gets the language that the address is written in. |
List<Integer[]> |
getPids()
Gets all PID parameter 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 ALTID. |
void |
setLanguage(String language)
Sets the language that the address 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.types.TextListType |
|---|
addValue, doMarshalText, doMarshalXml, doUnmarshalText, doUnmarshalXml, getValues, removeValue |
| Methods inherited from class ezvcard.types.VCardType |
|---|
compareTo, doMarshalSubTypes, getGroup, getQName, getSubTypes, getSupportedVersions, getTypeName, marshalSubTypes, marshalText, marshalXml, setGroup, unmarshalHtml, unmarshalText, unmarshalXml |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final String NAME
| Constructor Detail |
|---|
public OrganizationType()
| Method Detail |
|---|
public String getLanguage()
VCardSubTypes.getLanguage()public void setLanguage(String language)
language - the language or null to removeVCardSubTypes.setLanguage(java.lang.String)public String getType()
vCard versions: 4.0
public void setType(String type)
vCard versions: 4.0
type - the TYPE value (this should be either "work" or "home") or
null to removepublic List<Integer[]> getPids()
vCard versions: 4.0
VCardSubTypes.getPids()
public void addPid(int localId,
int clientPidMapRef)
vCard versions: 4.0
localId - the local IDclientPidMapRef - the ID used to reference the property's globally
unique identifier in the CLIENTPIDMAP property.VCardSubTypes.addPid(int, int)public void removePids()
vCard versions: 4.0
VCardSubTypes.removePids()public Integer getPref()
vCard versions: 4.0
VCardSubTypes.getPref()public void setPref(Integer pref)
vCard versions: 4.0
pref - the preference value or null to removeVCardSubTypes.setPref(java.lang.Integer)public String getAltId()
vCard versions: 4.0
VCardSubTypes.getAltId()public void setAltId(String altId)
vCard versions: 4.0
altId - the ALTID or null to removeVCardSubTypes.setAltId(java.lang.String)public List<String> getSortAs()
2.1 and 3.0 vCards should use the SORT-STRING
property instead.
vCard versions: 4.0
VCardSubTypes.getSortAs()public void setSortAs(String... names)
2.1 and 3.0 vCards should use the SORT-STRING
property instead.
vCard versions: 4.0
names - the names or empty parameter list to removeVCardSubTypes.setSortAs(java.lang.String...)
protected void doUnmarshalHtml(HCardElement element,
List<String> warnings)
VCardType
doUnmarshalHtml in class VCardTypeelement - the HTML element that contains the type data.warnings - allows the programmer to alert the user to any
note-worthy (but non-critical) issues that occurred during the
unmarshalling process
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||