Uses of Interface
org.simpleframework.xml.transform.Matcher
-
Packages that use Matcher Package Description org.simpleframework.xml.core org.simpleframework.xml.transform -
-
Uses of Matcher in org.simpleframework.xml.core
Classes in org.simpleframework.xml.core that implement Matcher Modifier and Type Class Description (package private) class
EmptyMatcher
TheEmptyMatcher
object is used as a delegate type that is used when no user specific matcher is specified.Fields in org.simpleframework.xml.core declared as Matcher Modifier and Type Field Description private Matcher
Support. matcher
This is the matcher used to acquire the transform objects.Constructors in org.simpleframework.xml.core with parameters of type Matcher Constructor Description Persister(Filter filter, Matcher matcher)
Constructor for thePersister
object.Persister(Filter filter, Matcher matcher, 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, Matcher matcher)
Constructor for thePersister
object.Persister(Strategy strategy, Matcher matcher, Format format)
Constructor for thePersister
object.Persister(Matcher matcher)
Constructor for thePersister
object.Persister(Matcher matcher, Format format)
Constructor for thePersister
object.Support(Filter filter, Matcher matcher)
Constructor for theSupport
object.Support(Filter filter, Matcher matcher, Format format)
Constructor for theSupport
object. -
Uses of Matcher in org.simpleframework.xml.transform
Classes in org.simpleframework.xml.transform that implement Matcher Modifier and Type Class Description (package private) class
ArrayMatcher
TheArrayMatcher
object performs matching of array types to array transforms.(package private) class
DefaultMatcher
TheDefaultMatcher
is a delegation object that uses several matcher implementations to correctly resolve both the stockTransform
implementations and implementations that have been overridden by the user with a custom matcher.(package private) class
EmptyMatcher
TheEmptyMatcher
object is used as a delegate type that is used when no user specific matcher is specified.(package private) class
PackageMatcher
ThePackageMatcher
object is used to match the stock transforms to Java packages.(package private) class
PrimitiveMatcher
ThePrimitiveMatcher
object is used to resolve the primitive types to a stock transform.class
RegistryMatcher
TheRegistryMatcher
provides a simple matcher backed by a registry.Fields in org.simpleframework.xml.transform declared as Matcher Modifier and Type Field Description private Matcher
DefaultMatcher. array
Matcher used to resolve transforms for array type objects.private Matcher
DefaultMatcher. matcher
Matcher used to resolve user specified transform overrides.private Matcher
Transformer. matcher
This is used to perform the matching of types to transforms.private Matcher
ArrayMatcher. primary
This is the primary matcher that can resolve transforms.private Matcher
DefaultMatcher. primitive
Matcher used to resolve stock transforms for primitive types.private Matcher
DefaultMatcher. stock
Matcher used to resolve all the core Java object transforms.Constructors in org.simpleframework.xml.transform with parameters of type Matcher Constructor Description ArrayMatcher(Matcher primary)
Constructor for theArrayTransform
object.DefaultMatcher(Matcher matcher)
Constructor for theDefaultMatcher
object.Transformer(Matcher matcher)
Constructor for theTransformer
object.
-