Uses of Interface
org.simpleframework.xml.filter.Filter
-
Packages that use Filter Package Description org.simpleframework.xml.core org.simpleframework.xml.filter -
-
Uses of Filter in org.simpleframework.xml.core
Classes in org.simpleframework.xml.core that implement Filter Modifier and Type Class Description (package private) class
Support
TheSupport
object is used to provide support to the serialization engine for processing and transforming strings.(package private) class
TemplateFilter
TheTemplateFilter
class is used to provide variables to the template engine.Fields in org.simpleframework.xml.core declared as Filter Modifier and Type Field Description private Filter
Source. filter
This is the filter used by this object for templating.private Filter
Support. filter
This is the filter used to transform the template variables.private Filter
TemplateEngine. filter
This is the filter used to replace templated variables.private Filter
TemplateFilter. filter
This is the filter object provided to the persister.Constructors in org.simpleframework.xml.core with parameters of type Filter Constructor Description Persister(Filter filter)
Constructor for thePersister
object.Persister(Filter filter, Format format)
Constructor for thePersister
object.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)
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.Support(Filter filter)
Constructor for theSupport
object.Support(Filter filter, Matcher matcher)
Constructor for theSupport
object.Support(Filter filter, Matcher matcher, Format format)
Constructor for theSupport
object.TemplateEngine(Filter filter)
Constructor for theTemplateEngine
object.TemplateFilter(Context context, Filter filter)
Constructor for theTemplateFilter
object. -
Uses of Filter in org.simpleframework.xml.filter
Classes in org.simpleframework.xml.filter that implement Filter Modifier and Type Class Description class
EnvironmentFilter
TheEnvironmentFilter
object is used to provide a filter that will replace the specified values with an environment variable from the OS.class
MapFilter
TheMapFilter
object is a filter that can make use of user specified mappings for replacement.class
PlatformFilter
ThePlatformFilter
object makes use of all filter types this resolves user specified properties first, followed by system properties, and finally environment variables.class
StackFilter
TheStackFilter
object provides a filter that can be given a collection of filters which can be used to resolve a replacement.class
SystemFilter
TheSystemFilter
object is used to provide a filter that will replace the specified values with system properties.Fields in org.simpleframework.xml.filter declared as Filter Modifier and Type Field Description private Filter
EnvironmentFilter. filter
Filter delegated to if no environment variable is resolved.private Filter
MapFilter. filter
This will resolve the replacement if no mapping is found.private Filter
SystemFilter. filter
Filter delegated to if no system property can be resolved.Fields in org.simpleframework.xml.filter with type parameters of type Filter Modifier and Type Field Description private java.util.Stack<Filter>
StackFilter. stack
This is used to store the filters that are used.Methods in org.simpleframework.xml.filter with parameters of type Filter Modifier and Type Method Description void
StackFilter. push(Filter filter)
This pushes the the providedFilter
on to the top of the stack.Constructors in org.simpleframework.xml.filter with parameters of type Filter Constructor Description EnvironmentFilter(Filter filter)
Constructor for theEnvironmentFilter
object.MapFilter(java.util.Map map, Filter filter)
Constructor for theMapFilter
object.SystemFilter(Filter filter)
Constructor for theSystemFilter
object.
-