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 TypeClassDescriptionclassTheAnnotationStrategyobject is used to intercept the serialization process and delegate to custom converters.classTheRegistryStrategyobject is used to intercept the serialization process and delegate to custom converters.Fields in org.simpleframework.xml.convert declared as StrategyModifier and TypeFieldDescriptionprivate final StrategyAnnotationStrategy.strategyThis is the strategy that is delegated to for serialization.private final StrategyRegistryStrategy.strategyThis is the strategy used if there is no bindings.Constructors in org.simpleframework.xml.convert with parameters of type StrategyModifierConstructorDescriptionAnnotationStrategy(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 StrategyModifier and TypeFieldDescriptionprivate final 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 StrategyModifierConstructorDescriptionConstructor for thePersisterobject.Constructor for thePersisterobject.Constructor for thePersisterobject.Constructor for thePersisterobject.Constructor for thePersisterobject.Constructor for thePersisterobject.Constructor for thePersisterobject.Constructor for thePersisterobject.Constructor for thePersisterobject.Constructor for thePersisterobject.Constructor for theSourceobject. -
Uses of Strategy in org.simpleframework.xml.strategy
Classes in org.simpleframework.xml.strategy that implement StrategyModifier and TypeClassDescriptionclassTheCycleStrategyrepresents a strategy that is used to augment the deserialization and serialization process such that cycles in an object graph can be supported.classTheTreeStrategyobject is used to provide a simple strategy for handling object graphs in a tree structure.classTheVisitorStrategyobject 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 StrategyVisitorStrategy.strategyThis 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 theVisitorStrategyobject.