|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectezvcard.types.VCardType
ezvcard.types.TextType
public class TextType
Represents a type whose value is just a regular text value.
| Field Summary | |
|---|---|
protected String |
value
|
| Fields inherited from class ezvcard.types.VCardType |
|---|
group, subTypes, typeName |
| Constructor Summary | |
|---|---|
TextType(String name)
|
|
TextType(String name,
String value)
|
|
| Method Summary | |
|---|---|
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 |
doMarshalXml(XCardElement parent,
List<String> warnings,
CompatibilityMode compatibilityMode)
Marshals this type for inclusion in an xCard (XML document). |
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. |
protected void |
doUnmarshalXml(XCardElement element,
List<String> warnings,
CompatibilityMode compatibilityMode)
Unmarshals the type from an xCard (XML document). |
String |
getValue()
Gets the value of this type. |
void |
setValue(String value)
Sets the value of this type. |
| 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 |
|---|
protected String value
| Constructor Detail |
|---|
public TextType(String name)
name - the type name (e.g. "NOTE")
public TextType(String name,
String value)
name - the type name (e.g. "NOTE")value - the type value| Method Detail |
|---|
public String getValue()
public void setValue(String value)
value - the new value
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 doMarshalXml(XCardElement parent,
List<String> warnings,
CompatibilityMode compatibilityMode)
VCardType
doMarshalXml in class VCardTypeparent - the XML element that the type's value will be inserted
into. For example, this would be the "<fn>" element for the "FN"
type.warnings - 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 doUnmarshalXml(XCardElement element,
List<String> warnings,
CompatibilityMode compatibilityMode)
VCardType
doUnmarshalXml in class VCardTypeelement - the XML element that contains the type data. For example,
this would be the "<fn>" element for the "FN" type. This object
will NOT include the "<parameters>" child element (it is removed
after being unmarshalled into a VCardSubTypes object).warnings - allows the programmer to alert the user to any
note-worthy (but non-critical) issues that occurred during the
unmarshalling processcompatibilityMode - allows the programmer 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 | |||||||||