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 classAnnotationStrategyTheAnnotationStrategyobject is used to intercept the serialization process and delegate to custom converters.classRegistryStrategyTheRegistryStrategyobject 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 StrategyAnnotationStrategy. strategyThis is the strategy that is delegated to for serialization.private StrategyRegistryStrategy. strategyThis 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 theAnnotationStrategyobject.RegistryStrategy(Registry registry, Strategy strategy)Constructor for theRegistryStrategyobject. -
Uses of Strategy in org.simpleframework.xml.core
Fields in org.simpleframework.xml.core declared as Strategy Modifier and Type Field Description private StrategyPersister. strategyThis is the strategy object used to load and resolve classes.private StrategySource. strategyThis 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 thePersisterobject.Persister(Strategy strategy, java.util.Map data)Constructor for thePersisterobject.Persister(Strategy strategy, java.util.Map data, Format format)Constructor for thePersisterobject.Persister(Strategy strategy, Filter filter)Constructor for thePersisterobject.Persister(Strategy strategy, Filter filter, Format format)Constructor for thePersisterobject.Persister(Strategy strategy, Filter filter, Matcher matcher)Constructor for thePersisterobject.Persister(Strategy strategy, Filter filter, Matcher matcher, Format format)Constructor for thePersisterobject.Persister(Strategy strategy, Format format)Constructor for thePersisterobject.Persister(Strategy strategy, Matcher matcher)Constructor for thePersisterobject.Persister(Strategy strategy, Matcher matcher, Format format)Constructor for thePersisterobject.Source(Strategy strategy, Support support, Session session)Constructor for theSourceobject. -
Uses of Strategy in org.simpleframework.xml.strategy
Classes in org.simpleframework.xml.strategy that implement Strategy Modifier and Type Class Description classCycleStrategyTheCycleStrategyrepresents a strategy that is used to augment the deserialization and serialization process such that cycles in an object graph can be supported.classTreeStrategyTheTreeStrategyobject is used to provide a simple strategy for handling object graphs in a tree structure.classVisitorStrategyTheVisitorStrategyobject 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 StrategyVisitorStrategy. strategyThis 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 theVisitorStrategyobject.
-