|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectezvcard.io.scribe.VCardPropertyScribe<T>
T
- the property classpublic abstract class VCardPropertyScribe<T extends VCardProperty>
Base class for vCard property marshallers.
Nested Class Summary | |
---|---|
protected static class |
VCardPropertyScribe.DateWriter
Factory class for writing dates. |
static class |
VCardPropertyScribe.Result<T extends VCardProperty>
Represents the result of an unmarshal operation. |
protected static class |
VCardPropertyScribe.SemiStructuredIterator
Iterates over the fields in a semi-structured value (a structured value whose components cannot be multi-valued). |
protected static class |
VCardPropertyScribe.Splitter
Factory class for splitting strings. |
protected static class |
VCardPropertyScribe.StructuredIterator
Iterates over the fields in a structured value. |
Field Summary | |
---|---|
protected Class<T> |
clazz
|
protected String |
propertyName
|
protected QName |
qname
|
Constructor Summary | |
---|---|
VCardPropertyScribe(Class<T> clazz,
String propertyName)
Creates a new marshaller. |
|
VCardPropertyScribe(Class<T> clazz,
String propertyName,
QName qname)
Creates a new marshaller. |
Method Summary | ||
---|---|---|
protected VCardDataType |
_dataType(T property,
VCardVersion version)
Determines the data type of a property instance. |
|
protected abstract VCardDataType |
_defaultDataType(VCardVersion version)
Determines the property's default data type. |
|
protected T |
_parseHtml(HCardElement element,
List<String> warnings)
Unmarshals the property from an hCard (HTML document). |
|
protected T |
_parseJson(JCardValue value,
VCardDataType dataType,
VCardParameters parameters,
List<String> warnings)
Unmarshals a property from a JSON data stream (jCard). |
|
protected abstract T |
_parseText(String value,
VCardDataType dataType,
VCardVersion version,
VCardParameters parameters,
List<String> warnings)
Unmarshals a property from a plain-text vCard. |
|
protected T |
_parseXml(XCardElement element,
VCardParameters parameters,
List<String> warnings)
Unmarshals a property from an XML document (xCard). |
|
protected void |
_prepareParameters(T property,
VCardParameters copy,
VCardVersion version,
VCard vcard)
Sanitizes a property's parameters before the property is written. |
|
protected JCardValue |
_writeJson(T property)
Marshals a property's value to a JSON data stream (jCard). |
|
protected abstract String |
_writeText(T property,
VCardVersion version)
Marshals a property's value to a string. |
|
protected void |
_writeXml(T property,
XCardElement element)
Marshals a property's value to an XML element (xCard). |
|
VCardDataType |
dataType(T property,
VCardVersion version)
Determines the data type of a property instance. |
|
protected static VCardPropertyScribe.DateWriter |
date(Date date)
Formats a Date object as a string. |
|
protected static Date |
date(String value)
Parses a date string. |
|
VCardDataType |
defaultDataType(VCardVersion version)
Determines the property's default data type. |
|
static String |
escape(String text)
Escapes all special characters within a vCard value. |
|
Class<T> |
getPropertyClass()
Gets the property class. |
|
String |
getPropertyName()
Gets the property name. |
|
QName |
getQName()
Gets this property's local name and namespace for xCard documents. |
|
protected static void |
handlePrefParam(VCardProperty property,
VCardParameters copy,
VCardVersion version,
VCard vcard)
Utility method for switching between the "PREF" and "TYPE=PREF" parameters, depending on the target vCard version. |
|
protected static
|
list(Collection<T> values)
Writes a comma-separated list of values. |
|
protected static String |
list(Object... values)
Writes a comma-separated list of values. |
|
protected static List<String> |
list(String value)
Parses a comma-separated list of values. |
|
protected static CannotParseException |
missingXmlElements(String... elements)
Creates a CannotParseException , indicating that the XML elements
that the parser expected to find are missing from the property's XML
element. |
|
protected static CannotParseException |
missingXmlElements(VCardDataType... dataTypes)
Creates a CannotParseException , indicating that the XML elements
that the parser expected to find are missing from the property's XML
element. |
|
VCardPropertyScribe.Result<T> |
parseHtml(Element element)
Unmarshals the property from an HTML document (hCard). |
|
VCardPropertyScribe.Result<T> |
parseJson(JCardValue value,
VCardDataType dataType,
VCardParameters parameters)
Unmarshals a property's value from a JSON data stream (jCard). |
|
VCardPropertyScribe.Result<T> |
parseText(String value,
VCardDataType dataType,
VCardVersion version,
VCardParameters parameters)
Unmarshals a property from a plain-text vCard. |
|
VCardPropertyScribe.Result<T> |
parseXml(Element element,
VCardParameters parameters)
Unmarshals a property's value from an XML document (xCard). |
|
VCardParameters |
prepareParameters(T property,
VCardVersion version,
VCard vcard)
Sanitizes a property's parameters (called before the property is written). |
|
protected static VCardPropertyScribe.SemiStructuredIterator |
semistructured(String value)
Parses a list of values that are delimited by semicolons. |
|
protected static VCardPropertyScribe.SemiStructuredIterator |
semistructured(String value,
int limit)
Parses a list of values that are delimited by semicolons. |
|
protected static VCardPropertyScribe.Splitter |
split(String string,
String delimiter)
Splits a string by a delimiter. |
|
protected static VCardPropertyScribe.StructuredIterator |
structured(JCardValue value)
Provides an iterator for a jCard structured value. |
|
protected static String |
structured(Object... values)
Writes a structured value. |
|
protected static VCardPropertyScribe.StructuredIterator |
structured(String value)
Parses a structured value. |
|
static String |
unescape(String text)
Unescapes all special characters that are escaped with a backslash, as well as escaped newlines. |
|
JCardValue |
writeJson(T property)
Marshals a property's value to a JSON data stream (jCard). |
|
String |
writeText(T property,
VCardVersion version)
Marshals a property's value to a string. |
|
void |
writeXml(T property,
Element element)
Marshals a property's value to an XML element (xCard). |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected final Class<T extends VCardProperty> clazz
protected final String propertyName
protected final QName qname
Constructor Detail |
---|
public VCardPropertyScribe(Class<T> clazz, String propertyName)
clazz
- the property classpropertyName
- the property name (e.g. "FN")public VCardPropertyScribe(Class<T> clazz, String propertyName, QName qname)
clazz
- the property classpropertyName
- the property name (e.g. "FN")qname
- the XML element name and namespace to use for xCard
documents (by default, the XML element name is set to the lower-cased
property name, and the element namespace is set to the xCard namespace)Method Detail |
---|
public Class<T> getPropertyClass()
public String getPropertyName()
public QName getQName()
public final VCardParameters prepareParameters(T property, VCardVersion version, VCard vcard)
property
- the propertyversion
- the version of the vCard that is being generatedvcard
- the vCard that the property belongs to
public final VCardDataType defaultDataType(VCardVersion version)
Determines the property's default data type.
When writing a plain-text vCard, if the data type of a property instance
(as determined by the dataType(T, ezvcard.VCardVersion)
method) matches the default data
type, then a VALUE parameter will *not* be written.
When parsing a plain-text vCard, if a property has no VALUE parameter,
then the property's default data type will be passed into the
parseText(java.lang.String, ezvcard.VCardDataType, ezvcard.VCardVersion, ezvcard.parameter.VCardParameters)
method.
version
- the vCard version
public final VCardDataType dataType(T property, VCardVersion version)
property
- the propertyversion
- the version of the vCard that is being generated
public final String writeText(T property, VCardVersion version)
property
- the propertyversion
- the version of the vCard that is being generated
SkipMeException
- if the property should not be written to the data
streampublic final void writeXml(T property, Element element)
property
- the propertyelement
- the property's XML element.
SkipMeException
- if the property should not be written to the data
streampublic final JCardValue writeJson(T property)
property
- the property
SkipMeException
- if the property should not be written to the data
streampublic final VCardPropertyScribe.Result<T> parseText(String value, VCardDataType dataType, VCardVersion version, VCardParameters parameters)
value
- the value as read off the wiredataType
- the data type of the property value. The property's VALUE
parameter is used to determine the data type. If the property has no
VALUE parameter, then this parameter will be set to the property's
default datatype, as determined by the defaultDataType(ezvcard.VCardVersion)
method.
Note that the VALUE parameter is removed from the property's parameter
list after it has been read.version
- the version of the vCard that is being parsedparameters
- the parsed parameters
CannotParseException
- if the marshaller could not parse the
property's value
SkipMeException
- if the property should not be added to the final
VCard
object
EmbeddedVCardException
- if the property value is an embedded vCard
(i.e. the AGENT property)public final VCardPropertyScribe.Result<T> parseXml(Element element, VCardParameters parameters)
element
- the property's XML elementparameters
- the parsed parameters
CannotParseException
- if the marshaller could not parse the
property's value
SkipMeException
- if the property should not be added to the final
VCard
objectpublic final VCardPropertyScribe.Result<T> parseHtml(Element element)
element
- the property's HTML element
CannotParseException
- if the property value could not be parsed
SkipMeException
- if this type should NOT be added to the
VCard
object
EmbeddedVCardException
- if the property value is an embedded vCard
(i.e. the AGENT property)public final VCardPropertyScribe.Result<T> parseJson(JCardValue value, VCardDataType dataType, VCardParameters parameters)
value
- the property's JSON valuedataType
- the data typeparameters
- the parsed parameters
CannotParseException
- if the marshaller could not parse the
property's value
SkipMeException
- if the property should not be added to the final
VCard
objectprotected void _prepareParameters(T property, VCardParameters copy, VCardVersion version, VCard vcard)
Sanitizes a property's parameters before the property is written.
This method should be overridden by child classes that wish to tweak the property's parameters before the property is written. The default implementation of this method does nothing.
property
- the propertycopy
- the list of parameters to make modifications to (it is a copy
of the property's parameters)version
- the version of the vCard that is being generatedvcard
- the vCard that the property belongs toprotected abstract VCardDataType _defaultDataType(VCardVersion version)
Determines the property's default data type.
When writing a plain-text vCard, if the data type of a property instance
(as determined by the dataType(T, ezvcard.VCardVersion)
method) matches the default data
type, then a VALUE parameter will *not* be written.
When parsing a plain-text vCard, if a property has no VALUE parameter,
then the property's default data type will be passed into the
parseText(java.lang.String, ezvcard.VCardDataType, ezvcard.VCardVersion, ezvcard.parameter.VCardParameters)
method.
version
- the vCard version
protected VCardDataType _dataType(T property, VCardVersion version)
Determines the data type of a property instance.
This method should be overridden by child classes if a property's data
type changes depending on its value. The default implementation of this
method calls _defaultDataType(ezvcard.VCardVersion)
.
property
- the propertyversion
- the version of the vCard that is being generated
protected abstract String _writeText(T property, VCardVersion version)
property
- the propertyversion
- the version of the vCard that is being generated
SkipMeException
- if the property should not be written to the data
streamprotected void _writeXml(T property, XCardElement element)
Marshals a property's value to an XML element (xCard).
This method should be overridden by child classes that wish to support
xCard. The default implementation of this method will append one child
element to the property's XML element. The child element's name will be
that of the property's data type (retrieved using the dataType(T, ezvcard.VCardVersion)
method), and the child element's text content will be set to the
property's marshalled plain-text value (retrieved using the
writeText(T, ezvcard.VCardVersion)
method).
property
- the propertyelement
- the property's XML element
SkipMeException
- if the property should not be written to the data
streamprotected JCardValue _writeJson(T property)
Marshals a property's value to a JSON data stream (jCard).
This method should be overridden by child classes that wish to support
jCard. The default implementation of this method will create a jCard
property that has a single JSON string value (generated by the
writeText(T, ezvcard.VCardVersion)
method).
property
- the property
SkipMeException
- if the property should not be written to the data
streamprotected abstract T _parseText(String value, VCardDataType dataType, VCardVersion version, VCardParameters parameters, List<String> warnings)
value
- the value as read off the wiredataType
- the data type of the property value. The property's VALUE
parameter is used to determine the data type. If the property has no
VALUE parameter, then this parameter will be set to the property's
default datatype, as determined by the defaultDataType(ezvcard.VCardVersion)
method.
Note that the VALUE parameter is removed from the property's parameter
list after it has been read.version
- the version of the vCard that is being parsedparameters
- the parsed parameters. These parameters will be
assigned to the property object once this method returns. Therefore, do
not assign any parameters to the property object itself whilst inside of
this method, or else they will be overwritten.warnings
- allows the programmer to alert the user to any
note-worthy (but non-critical) issues that occurred during the
unmarshalling process
CannotParseException
- if the marshaller could not parse the
property's value
SkipMeException
- if the property should not be added to the final
VCard
objectprotected T _parseXml(XCardElement element, VCardParameters parameters, List<String> warnings)
Unmarshals a property from an XML document (xCard).
This method should be overridden by child classes that wish to support
xCard. The default implementation of this method will find the first
child element with the xCard namespace. The element's name will be used
as the property's data type and its text content will be passed into the
_parseText(java.lang.String, ezvcard.VCardDataType, ezvcard.VCardVersion, ezvcard.parameter.VCardParameters, java.util.List
method. If no such child element is found, then the
parent element's text content will be passed into _parseText(java.lang.String, ezvcard.VCardDataType, ezvcard.VCardVersion, ezvcard.parameter.VCardParameters, java.util.List
and
the data type will be null.
element
- the property's XML elementparameters
- the parsed parameters. These parameters will be
assigned to the property object once this method returns. Therefore, do
not assign any parameters to the property object itself whilst inside of
this method, or else they will be overwritten.warnings
- allows the programmer to alert the user to any
note-worthy (but non-critical) issues that occurred during the
unmarshalling process
CannotParseException
- if the marshaller could not parse the
property's value
SkipMeException
- if the property should not be added to the final
VCard
objectprotected T _parseHtml(HCardElement element, List<String> warnings)
Unmarshals the property from an hCard (HTML document).
This method should be overridden by child classes that wish to support
hCard. The default implementation of this method will retrieve the HTML
element's hCard value (as described in HCardElement.value()
), and
pass it into the _parseText(java.lang.String, ezvcard.VCardDataType, ezvcard.VCardVersion, ezvcard.parameter.VCardParameters, java.util.List
method.
element
- the property's HTML elementwarnings
- allows the programmer to alert the user to any
note-worthy (but non-critical) issues that occurred during the
unmarshalling process
CannotParseException
- if the property value could not be parsed
SkipMeException
- if this property should NOT be added to the
VCard
object
EmbeddedVCardException
- if the value of this property is an
embedded vCard (i.e. the AGENT property)protected T _parseJson(JCardValue value, VCardDataType dataType, VCardParameters parameters, List<String> warnings)
Unmarshals a property from a JSON data stream (jCard).
This method should be overridden by child classes that wish to support
jCard. The default implementation of this method will convert the jCard
property value to a string and pass it into the _parseText(java.lang.String, ezvcard.VCardDataType, ezvcard.VCardVersion, ezvcard.parameter.VCardParameters, java.util.List
method.
The following paragraphs describe the way in which this method's default implementation converts a jCard value to a string:
If the jCard value consists of a single, non-array, non-object value,
then the value is converted to a string. Special characters (backslashes,
commas, and semicolons) are escaped in order to simulate what the value
might look like in a plain-text vCard.
["x-foo", {}, "text", "the;value"] --> "the\;value"
["x-foo", {}, "text", 2] --> "2"
If the jCard value consists of multiple, non-array, non-object values,
then all the values are appended together in a single string, separated
by commas. Special characters (backslashes, commas, and semicolons) are
escaped for each value in order to prevent commas from being treated as
delimiters, and to simulate what the value might look like in a
plain-text vCard.
["x-foo", {}, "text", "one", "two,three"] -->
"one,two\,three"
If the jCard value is a single array, then this array is treated as a
"structured value", and converted its plain-text representation. Special
characters (backslashes, commas, and semicolons) are escaped for each
value in order to prevent commas and semicolons from being treated as
delimiters.
["x-foo", {}, "text", ["one", ["two", "three"], "four;five"]]
--> "one;two,three;four\;five"
If the jCard value starts with a JSON object, then it is converted to an
empty string (JSON objects are not supported by this method).
["x-foo", , "text", {"one": 1}] --> ""}
For all other cases, behavior is undefined.
value
- the property's JSON valuedataType
- the data typeparameters
- the parsed parameters. These parameters will be
assigned to the property object once this method returns. Therefore, do
not assign any parameters to the property object itself whilst inside of
this method, or else they will be overwritten.warnings
- allows the programmer to alert the user to any
note-worthy (but non-critical) issues that occurred during the
unmarshalling process
CannotParseException
- if the marshaller could not parse the
property's value
SkipMeException
- if the property should not be added to the final
VCard
objectpublic static String unescape(String text)
text
- the text to unescape
public static String escape(String text)
Escapes all special characters within a vCard value. These characters are:
\
),
);
)
Newlines are not escaped by this method. They are escaped when the vCard
is serialized (in the VCardRawWriter
class).
text
- the text to escape
protected static VCardPropertyScribe.Splitter split(String string, String delimiter)
string
- the string to split (e.g. "one,two,three")delimiter
- the delimiter (e.g. ",")
protected static List<String> list(String value)
value
- the string to parse (e.g. "one,two,th\,ree")
protected static String list(Object... values)
values
- the values to write
protected static <T> String list(Collection<T> values)
values
- the values to write
protected static VCardPropertyScribe.SemiStructuredIterator semistructured(String value)
value
- the string to parse (e.g. "one;two;three")
protected static VCardPropertyScribe.SemiStructuredIterator semistructured(String value, int limit)
value
- the string to parse (e.g. "one;two;three")limit
- the max number of components to parse
protected static VCardPropertyScribe.StructuredIterator structured(String value)
value
- the string to parse (e.g. "one;two,three;four")
protected static VCardPropertyScribe.StructuredIterator structured(JCardValue value)
value
- the jCard value
protected static String structured(Object... values)
Writes a structured value.
This method accepts a list of Object
instances.
Collection
objects will be treated as multi-valued components.
Null objects will be treated as empty components. All other objects will
have their toString()
method invoked to generate the string
value.
values
- the values to write
protected static Date date(String value)
value
- the date string
protected static VCardPropertyScribe.DateWriter date(Date date)
Date
object as a string.
date
- the date
protected static CannotParseException missingXmlElements(VCardDataType... dataTypes)
CannotParseException
, indicating that the XML elements
that the parser expected to find are missing from the property's XML
element.
dataTypes
- the expected data types (null for "unknown")protected static CannotParseException missingXmlElements(String... elements)
CannotParseException
, indicating that the XML elements
that the parser expected to find are missing from the property's XML
element.
elements
- the names of the expected XML elements.protected static void handlePrefParam(VCardProperty property, VCardParameters copy, VCardVersion version, VCard vcard)
_prepareParameters(T, ezvcard.parameter.VCardParameters, ezvcard.VCardVersion, ezvcard.VCard)
method.
property
- the property that's being marshalledcopy
- the parameters that are being marshalledversion
- the vCard versionvcard
- the vCard that's being marshalled
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |