org.simpleframework.xml
Annotation Type Transient


@Retention(value=RUNTIME)
public @interface Transient

The Transient annotation is an optional annotation that can be used within an XML class schema to mark a method or field as being transient, which indicates that it does not take part in serialization or deserialization. This is used only as a means to illustrate to the reader of your class that this has no impact on the XML representation of the object. Fields or methods annotated with this will be ignored, as will those that contain no XML annotations.

Author:
Niall Gallagher