Uses of Interface
org.simpleframework.xml.strategy.Strategy
-
Packages that use Strategy Package Description org.simpleframework.xml.convert org.simpleframework.xml.core org.simpleframework.xml.strategy -
-
Uses of Strategy in org.simpleframework.xml.convert
Classes in org.simpleframework.xml.convert that implement Strategy Modifier and Type Class Description class
AnnotationStrategy
TheAnnotationStrategy
object is used to intercept the serialization process and delegate to custom converters.class
RegistryStrategy
TheRegistryStrategy
object is used to intercept the serialization process and delegate to custom converters.Fields in org.simpleframework.xml.convert declared as Strategy Modifier and Type Field Description private Strategy
AnnotationStrategy. strategy
This is the strategy that is delegated to for serialization.private Strategy
RegistryStrategy. strategy
This is the strategy used if there is no bindings.Constructors in org.simpleframework.xml.convert with parameters of type Strategy Constructor Description AnnotationStrategy(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 Strategy Modifier and Type Field Description private 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 Strategy Constructor Description Persister(Strategy strategy)
Constructor for thePersister
object.Persister(Strategy strategy, java.util.Map data)
Constructor for thePersister
object.Persister(Strategy strategy, java.util.Map data, Format format)
Constructor for thePersister
object.Persister(Strategy strategy, Filter filter)
Constructor for thePersister
object.Persister(Strategy strategy, Filter filter, Format format)
Constructor for thePersister
object.Persister(Strategy strategy, Filter filter, Matcher matcher)
Constructor for thePersister
object.Persister(Strategy strategy, Filter filter, Matcher matcher, Format format)
Constructor for thePersister
object.Persister(Strategy strategy, Format format)
Constructor for thePersister
object.Persister(Strategy strategy, Matcher matcher)
Constructor for thePersister
object.Persister(Strategy strategy, Matcher matcher, Format format)
Constructor for thePersister
object.Source(Strategy strategy, Support support, Session session)
Constructor for theSource
object. -
Uses of Strategy in org.simpleframework.xml.strategy
Classes in org.simpleframework.xml.strategy that implement Strategy Modifier and Type Class Description class
CycleStrategy
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
TreeStrategy
TheTreeStrategy
object is used to provide a simple strategy for handling object graphs in a tree structure.class
VisitorStrategy
TheVisitorStrategy
object is a simplification of a strategy, which allows manipulation of the serialization process.Fields in org.simpleframework.xml.strategy declared as Strategy Modifier and Type Field Description private Strategy
VisitorStrategy. strategy
This is the strategy that is delegated to by this strategy.Constructors in org.simpleframework.xml.strategy with parameters of type Strategy Constructor Description VisitorStrategy(Visitor visitor, Strategy strategy)
Constructor for theVisitorStrategy
object.
-