|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectezvcard.types.VCardType
ezvcard.types.AgentType
public class AgentType
An embedded vCard or URL containing the information of someone who represents the person.
//URL
VCard vcard = new VCard();
AgentType agent = new AgentType("http://mi5.gov.uk/007");
vcard.setAgent(agent);
//vCard
VCard vcard = new VCard();
VCard agentVcard = new VCard();
agentVcard.setFormattedName(new FormattedNameType("Agent 007"));
AgentType agent = new AgentType(agentVcard);
vcard.setAgent(agent);
vCard property name: AGENT
vCard versions: 2.1, 3.0
| Field Summary | |
|---|---|
static String |
NAME
|
| Fields inherited from class ezvcard.types.VCardType |
|---|
group, subTypes, typeName |
| Constructor Summary | |
|---|---|
AgentType()
|
|
AgentType(String url)
|
|
AgentType(VCard vcard)
|
|
| Method Summary | |
|---|---|
protected void |
doMarshalSubTypes(VCardSubTypes copy,
VCardVersion version,
List<String> warnings,
CompatibilityMode compatibilityMode,
VCard vcard)
Gets the sub types that will be sent over the wire. |
protected void |
doMarshalText(StringBuilder sb,
VCardVersion version,
List<String> warnings,
CompatibilityMode compatibilityMode)
Converts this type object to a string for sending over the wire. |
protected void |
doUnmarshalHtml(HCardElement element,
List<String> warnings)
Unmarshals the type from an hCard (HTML document). |
protected void |
doUnmarshalText(String value,
VCardVersion version,
List<String> warnings,
CompatibilityMode compatibilityMode)
Unmarshals the type value from off the wire. |
VCardVersion[] |
getSupportedVersions()
Gets the vCard versions that support this type. |
String |
getUrl()
Gets the URL to the agent's information. |
VCard |
getVCard()
Gets an embedded vCard with the agent's information. |
void |
setUrl(String url)
Sets the URL to the agent's information. |
void |
setVCard(VCard vcard)
Sets an embedded vCard with the agent's information. |
| Methods inherited from class ezvcard.types.VCardType |
|---|
compareTo, doMarshalXml, doUnmarshalXml, getGroup, getQName, getSubTypes, 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 AgentType()
public AgentType(String url)
url - a URL pointing to the agent's informationpublic AgentType(VCard vcard)
vcard - a vCard containing the agent's information| Method Detail |
|---|
public String getUrl()
public void setUrl(String url)
url - the URLpublic VCard getVCard()
public void setVCard(VCard vcard)
vcard - the vCardpublic VCardVersion[] getSupportedVersions()
VCardType
getSupportedVersions in class VCardType
protected void doMarshalSubTypes(VCardSubTypes copy,
VCardVersion version,
List<String> warnings,
CompatibilityMode compatibilityMode,
VCard vcard)
VCardType
If this method is NOT overridden, then the type's sub types will be sent
over the wire as-is. In other words, whatever is in the
VCardType.subTypes field will be sent. Child classes can override
this method in order to modify the sub types before they are marshalled.
doMarshalSubTypes in class VCardTypecopy - the sub types that will be marshalled into the vCard.
This object is a copy of the VCardType.subTypes field, so any
modifications done to this object will not effect the state of the field.version - the version vCard that is being generatedwarnings - allows the programmer to alert the user to any
note-worthy (but non-critical) issues that occurred during the
marshalling processcompatibilityMode - allows the programmer to customize the
marshalling process depending on the expected consumer of the vCardvcard - the VCard object that is being marshalled
protected void doMarshalText(StringBuilder sb,
VCardVersion version,
List<String> warnings,
CompatibilityMode compatibilityMode)
VCardType
doMarshalText in class VCardTypesb - the buffer to add the marshalled value toversion - the version vCard that is being generatedwarnings - allows the programmer to alert the user to any
note-worthy (but non-critical) issues that occurred during the
marshalling processcompatibilityMode - allows the programmer to customize the
marshalling process depending on the expected consumer of the vCard
protected void doUnmarshalText(String value,
VCardVersion version,
List<String> warnings,
CompatibilityMode compatibilityMode)
VCardType
doUnmarshalText in class VCardTypevalue - the unfolded value from off the wire. If the wire value is
in the "quoted-printable" encoding, it will be decoded.version - the version of the vCard that is being read or null if the
VERSION type has not been parsed yet (v3.0 and v4.0 require that the
VERSION type be at the top of the vCard, but v2.1 has no such
requirement)warnings - allows the programmer to alert the user to any
note-worthy (but non-critical) issues that occurred during the
unmarshalling processcompatibilityMode - allows you to customize the unmarshalling
process depending on where the vCard came from
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 | |||||||||