Uses of Interface
org.simpleframework.xml.strategy.Strategy
Packages that use Strategy
Package
Description
-
Uses of Strategy in org.simpleframework.xml.convert
Classes in org.simpleframework.xml.convert that implement StrategyModifier and TypeClassDescriptionclass
TheAnnotationStrategy
object is used to intercept the serialization process and delegate to custom converters.class
TheRegistryStrategy
object is used to intercept the serialization process and delegate to custom converters.Fields in org.simpleframework.xml.convert declared as StrategyModifier and TypeFieldDescriptionprivate final Strategy
AnnotationStrategy.strategy
This is the strategy that is delegated to for serialization.private final Strategy
RegistryStrategy.strategy
This is the strategy used if there is no bindings.Constructors in org.simpleframework.xml.convert with parameters of type StrategyModifierConstructorDescriptionAnnotationStrategy
(Strategy strategy) Constructor for theAnnotationStrategy
object.RegistryStrategy
(Registry registry, Strategy strategy) Constructor for theRegistryStrategy
object. -
Uses of Strategy in org.simpleframework.xml.core
Fields in org.simpleframework.xml.core declared as StrategyModifier and TypeFieldDescriptionprivate final Strategy
Persister.strategy
This is the strategy object used to load and resolve classes.private Strategy
Source.strategy
This is the strategy used to resolve the element classes.Constructors in org.simpleframework.xml.core with parameters of type StrategyModifierConstructorDescriptionConstructor for thePersister
object.Constructor for thePersister
object.Constructor for thePersister
object.Constructor for thePersister
object.Constructor for thePersister
object.Constructor for thePersister
object.Constructor for thePersister
object.Constructor for thePersister
object.Constructor for thePersister
object.Constructor for thePersister
object.Constructor for theSource
object. -
Uses of Strategy in org.simpleframework.xml.strategy
Classes in org.simpleframework.xml.strategy that implement StrategyModifier and TypeClassDescriptionclass
TheCycleStrategy
represents a strategy that is used to augment the deserialization and serialization process such that cycles in an object graph can be supported.class
TheTreeStrategy
object is used to provide a simple strategy for handling object graphs in a tree structure.class
TheVisitorStrategy
object is a simplification of a strategy, which allows manipulation of the serialization process.Fields in org.simpleframework.xml.strategy declared as StrategyModifier and TypeFieldDescriptionprivate final Strategy
VisitorStrategy.strategy
This is the strategy that is delegated to by this strategy.Constructors in org.simpleframework.xml.strategy with parameters of type StrategyModifierConstructorDescriptionVisitorStrategy
(Visitor visitor, Strategy strategy) Constructor for theVisitorStrategy
object.