Uses of Interface
org.apache.commons.digester.Rules
-
Packages that use Rules Package Description org.apache.commons.digester Thexmlrules
package provides for XML-based definition of rules forDigester
.org.apache.commons.digester.plugins Theplugins
package provides an easy mechanism whereby new digestion rules can be added dynamically during a digestion. -
-
Uses of Rules in org.apache.commons.digester
Classes in org.apache.commons.digester that implement Rules Modifier and Type Class Description class
AbstractRulesImpl
AbstractRuleImpl
provides basic services forRules
implementations.class
ExtendedBaseRules
Extension ofRulesBase
for complex schema.class
RegexRules
Rules implementation that uses regular expression matching for paths.class
RulesBase
Default implementation of theRules
interface that supports the standard rule matching behavior.class
WithDefaultsRulesWrapper
Rules
Decorator that returns default rules when no matches are returned by the wrapped implementation.Fields in org.apache.commons.digester declared as Rules Modifier and Type Field Description protected Rules
Digester. rules
TheRules
implementation containing our collection ofRule
instances and associated matching policy.Methods in org.apache.commons.digester that return Rules Modifier and Type Method Description Rules
Digester. getRules()
Return theRules
implementation object containing our rules collection and associated matching policy.Methods in org.apache.commons.digester with parameters of type Rules Modifier and Type Method Description void
Digester. setRules(Rules rules)
Set theRules
implementation object containing our rules collection and associated matching policy.Constructors in org.apache.commons.digester with parameters of type Rules Constructor Description WithDefaultsRulesWrapper(Rules wrappedRules)
Base constructor. -
Uses of Rules in org.apache.commons.digester.plugins
Classes in org.apache.commons.digester.plugins that implement Rules Modifier and Type Class Description class
PluginRules
A custom digester Rules manager which must be used as the Rules object when using the plugins module functionality.Methods in org.apache.commons.digester.plugins that return Rules Modifier and Type Method Description Rules
PluginRules. getParent()
Return the parent Rules object.abstract Rules
RulesFactory. newRules(Digester d, Class<?> pluginClass)
Return an instance of some Rules implementation that the plugged-in class shall use to match its private parsing rules.Constructors in org.apache.commons.digester.plugins with parameters of type Rules Constructor Description PluginRules(Rules decoratedRules)
Constructor for top-level Rules object which handles rule-matching using the specified implementation.
-