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) classSupportTheSupportobject is used to provide support to the serialization engine for processing and transforming strings.(package private) classTemplateFilterTheTemplateFilterclass is used to provide variables to the template engine.Fields in org.simpleframework.xml.core declared as Filter Modifier and Type Field Description private FilterSource. filterThis is the filter used by this object for templating.private FilterSupport. filterThis is the filter used to transform the template variables.private FilterTemplateEngine. filterThis is the filter used to replace templated variables.private FilterTemplateFilter. filterThis 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 thePersisterobject.Persister(Filter filter, Format format)Constructor for thePersisterobject.Persister(Filter filter, Matcher matcher)Constructor for thePersisterobject.Persister(Filter filter, Matcher matcher, 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.Support(Filter filter)Constructor for theSupportobject.Support(Filter filter, Matcher matcher)Constructor for theSupportobject.Support(Filter filter, Matcher matcher, Format format)Constructor for theSupportobject.TemplateEngine(Filter filter)Constructor for theTemplateEngineobject.TemplateFilter(Context context, Filter filter)Constructor for theTemplateFilterobject. -
Uses of Filter in org.simpleframework.xml.filter
Classes in org.simpleframework.xml.filter that implement Filter Modifier and Type Class Description classEnvironmentFilterTheEnvironmentFilterobject is used to provide a filter that will replace the specified values with an environment variable from the OS.classMapFilterTheMapFilterobject is a filter that can make use of user specified mappings for replacement.classPlatformFilterThePlatformFilterobject makes use of all filter types this resolves user specified properties first, followed by system properties, and finally environment variables.classStackFilterTheStackFilterobject provides a filter that can be given a collection of filters which can be used to resolve a replacement.classSystemFilterTheSystemFilterobject 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 FilterEnvironmentFilter. filterFilter delegated to if no environment variable is resolved.private FilterMapFilter. filterThis will resolve the replacement if no mapping is found.private FilterSystemFilter. filterFilter 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. stackThis 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 voidStackFilter. push(Filter filter)This pushes the the providedFilteron to the top of the stack.Constructors in org.simpleframework.xml.filter with parameters of type Filter Constructor Description EnvironmentFilter(Filter filter)Constructor for theEnvironmentFilterobject.MapFilter(java.util.Map map, Filter filter)Constructor for theMapFilterobject.SystemFilter(Filter filter)Constructor for theSystemFilterobject.
-