Uses of Interface
org.apache.commons.digester3.binder.RulesModule
-
Packages that use RulesModule Package Description org.apache.commons.digester3.annotations Theannotations
package provides for Java5 Annotations meta data-based definition of rules forDigester
.org.apache.commons.digester3.binder The Digester EDSL allows configure Digester using fluent APIs.org.apache.commons.digester3.xmlrules The Digester package lets you configure an XML -> Java object mapping module, which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized. -
-
Uses of RulesModule in org.apache.commons.digester3.annotations
Classes in org.apache.commons.digester3.annotations that implement RulesModule Modifier and Type Class Description class
FromAnnotationsRuleModule
RulesModule
implementation that allows loading rules from annotated classes.Methods in org.apache.commons.digester3.annotations with parameters of type RulesModule Modifier and Type Method Description void
WithMemoryRulesBinder. install(RulesModule rulesModule)
Allows sub-modules inclusion while binding rules. -
Uses of RulesModule in org.apache.commons.digester3.binder
Classes in org.apache.commons.digester3.binder that implement RulesModule Modifier and Type Class Description class
AbstractNamespaceURIBasedRulesModule
A support class for RulesModule which reduces repetition and results in a more readable configuration, that sets rules binding for a defined namespace URI (it can be overridden while binding).class
AbstractRulesModule
A support class for RulesModule which reduces repetition and results in a more readable configuration.Fields in org.apache.commons.digester3.binder with type parameters of type RulesModule Modifier and Type Field Description private java.lang.Iterable<RulesModule>
DigesterLoader. rulesModules
Methods in org.apache.commons.digester3.binder with parameters of type RulesModule Modifier and Type Method Description protected void
AbstractRulesModule. install(RulesModule rulesModule)
Uses the given module to configure more bindings.void
DefaultRulesBinder. install(RulesModule rulesModule)
Allows sub-modules inclusion while binding rules.void
RulesBinder. install(RulesModule rulesModule)
Allows sub-modules inclusion while binding rules.static DigesterLoader
DigesterLoader. newLoader(RulesModule... rulesModules)
Creates a newDigesterLoader
instance given one or moreRulesModule
instance.Method parameters in org.apache.commons.digester3.binder with type arguments of type RulesModule Modifier and Type Method Description static DigesterLoader
DigesterLoader. newLoader(java.lang.Iterable<RulesModule> rulesModules)
Creates a newDigesterLoader
instance given a collection ofRulesModule
instance.Constructor parameters in org.apache.commons.digester3.binder with type arguments of type RulesModule Constructor Description DigesterLoader(java.lang.Iterable<RulesModule> rulesModules)
Creates a newDigesterLoader
instance given a collection ofRulesModule
instance. -
Uses of RulesModule in org.apache.commons.digester3.xmlrules
Classes in org.apache.commons.digester3.xmlrules that implement RulesModule Modifier and Type Class Description class
FromXmlRulesModule
RulesModule
implementation that allows loading rules from XML files.(package private) class
XmlRulesModule
Methods in org.apache.commons.digester3.xmlrules with parameters of type RulesModule Modifier and Type Method Description private void
IncludeRule. install(RulesModule rulesModule)
void
NameSpaceURIRulesBinder. install(RulesModule rulesModule)
Allows sub-modules inclusion while binding rules.void
PrefixedRulesBinder. install(RulesModule rulesModule)
Allows sub-modules inclusion while binding rules.void
WithMemoryRulesBinder. install(RulesModule rulesModule)
Allows sub-modules inclusion while binding rules.
-