Package org.simpleframework.xml.strategy
Interface Name
-
interface Name
This contains the default attribute names to use to populate the XML elements with data relating to the object to be serialized. Various details, such as the class name of an object need to be written to the element in order for it to be deserialized. Such attribute names are shared between strategy implementations.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
LABEL
The default name of the attribute used to specify the class.static java.lang.String
LENGTH
The default name of the attribute used to specify the length.static java.lang.String
MARK
The default name of the attribute used to identify an object.static java.lang.String
REFER
The default name of the attribute used for circular references.
-
-
-
Field Detail
-
MARK
static final java.lang.String MARK
The default name of the attribute used to identify an object.- See Also:
- Constant Field Values
-
REFER
static final java.lang.String REFER
The default name of the attribute used for circular references.- See Also:
- Constant Field Values
-
LENGTH
static final java.lang.String LENGTH
The default name of the attribute used to specify the length.- See Also:
- Constant Field Values
-
LABEL
static final java.lang.String LABEL
The default name of the attribute used to specify the class.- See Also:
- Constant Field Values
-
-