Lines Matching refs:to

6 This annotation can be defined on a class to indicate the exclusion strategy
21 This annotation can be defined on a property to indicate that the property should
25 be possible to use ``@Exclude(if="expression")`` to exclude dynamically a property.
29 This annotation can be defined on a property to indicate that the property should
33 be possible to use ``@Expose(if="expression")`` to expose dynamically a property.
37 This annotation can be defined on a property to indicate that the property should
44 This annotation can be defined on a property to define the serialized name for a
46 to a lower-cased underscored name, e.g. camelCase -> camel_case.
50 ``SerializedNameAnnotationStrategy``). In order to re-enable the annotation, you
51 will need to wrap your custom strategy with the ``SerializedNameAnnotationStrategy``.
66 This annotation can be defined on a property to specify starting from which
73 This annotation can be defined on a property to specify until which version this
80 This annotation can be defined on a property to specify if the property
86 This annotation can be defined on a property to limit the depth to which the
92 This annotation can be defined on a property, or a class to specify in which way
94 set the value via reflection, but you may change this to use a public method instead:
119 This annotation can be defined on a property to specify which public method should
120 be called to retrieve, or set the value of the given property:
148 If you need only to serialize your data, you can avoid providing a setter by
153 This annotation can be defined on a class to control the order of properties. By
154 default the order is undefined, but you may change it to either "alphabetical", or
208 This annotation can be defined on a method to indicate that the data returned by
211 A virtual property can be defined for a method of an object to serialize and can be
261 ``@VirtualProperty()`` can also have an optional property ``name``, used to define the internal pro…
262 (for sorting proposes as example). When not specified, it defaults to the method name with the "get…
270 This annotation can be defined on a property to indicate that the data of the property
273 **Note**: AccessorOrder will be using the name of the property to determine the order.
277 This annotation can be defined on a property to indicate that the data of the property
284 This annotation can be defined on a method which is supposed to be called before
294 This annotation can be defined on a method which is supposed to be called after
304 where a common base class exists. The ``@Discriminator`` annotation has to be applied
305 to the least super type::
321 This annotation can be defined on a property to specify the type of that property.
324 handlers to enhance the serialization or deserialization result; for example, you may want to
325 force a certain format to be used for serializing DateTime types and specifying at the same time a …
347 | array<K, V> | A map of keys of type K to values of t…
359 … | deserialize format). If you do not want to |
374 | | to specify a specific timezone, use an…
381 | ArrayCollection<T> | Similar to array<T>, but will be deser…
384 | ArrayCollection<K, V> | Similar to array<K, V>, but will be de…
387 | Generator | Similar to array, but will be deserial…
390 | Generator<T> | Similar to array<T>, but will be deser…
393 | Generator<K, V> | Similar to array<K, V>, but will be de…
396 | ArrayIterator | Similar to array, but will be deserial…
399 | ArrayIterator<T> | Similar to array<T>, but will be deser…
402 | ArrayIterator<K, V> | Similar to array<K, V>, but will be de…
470 This allows you to specify the name of the top-level element.
494 @XmlRoot only applies to the root element, but is for example not taken into
500 This allows you to mark properties which should be set as attributes,
527 This annotation allows to modify the behaviour of @Discriminator regarding handling of XML.
592 This allows you to mark properties which should be set as the value of the
624 This allows you to define several properties of how arrays should be
625 serialized. This is very similar to @XmlMap, and should be used if the
674 Similar to @XmlList, but the keys of the array are meaningful.
678 This allows you to use the keys of an array as xml tags.
687 This is similar to the @XmlKeyValuePairs, but instead of creating child elements, it creates attrib…
712 This annotation can be defined on a property to add additional xml serialization/deserialization pr…
739 This annotation allows you to specify Xml namespace/s and prefix used.