Uses of Class
org.apache.commons.digester3.binder.NodeCreateRuleProvider
Packages that use NodeCreateRuleProvider
Package
Description
The Digester EDSL allows configure Digester using fluent APIs.
-
Uses of NodeCreateRuleProvider in org.apache.commons.digester3.binder
Methods in org.apache.commons.digester3.binder that return NodeCreateRuleProviderModifier and TypeMethodDescriptionLinkedRuleBuilder.createNode()
A rule implementation that creates a DOM Node containing the XML at the element that matched the rule.NodeCreateRuleProvider.ofType
(NodeCreateRuleProvider.NodeType nodeType) NodeCreateRule
instance will be created either a DOMElement
or a DOMDocumentFragment
, depending on the value of thenodeType
parameter.NodeCreateRuleProvider.usingDocumentBuilder
(DocumentBuilder documentBuilder) NodeCreateRule
instance will be created a DOMElement
, but lets users specify the JAXPDocumentBuilder
that should be used when constructing the node tree.