Uses of Class
org.apache.commons.digester3.binder.FactoryCreateBuilder
Packages that use FactoryCreateBuilder
Package
Description
The Digester EDSL allows configure Digester using fluent APIs.
-
Uses of FactoryCreateBuilder in org.apache.commons.digester3.binder
Methods in org.apache.commons.digester3.binder that return FactoryCreateBuilderModifier and TypeMethodDescriptionLinkedRuleBuilder.factoryCreate()
Uses anObjectCreationFactory
to create a new object which it pushes onto the object stack.FactoryCreateBuilder.ignoreCreateExceptions
(boolean ignoreCreateExceptions) Exceptions thrown by the object creation factory will be ignored or not.FactoryCreateBuilder.ofType
(Class<? extends ObjectCreationFactory<?>> type) Construct a factory create rule that will use the specified class to create anObjectCreationFactory
which will then be used to create an object and push it on the stack.Construct a factory create rule that will use the specified class name to create anObjectCreationFactory
which will then be used to create an object and push it on the stack.FactoryCreateBuilder.overriddenByAttribute
(String attributeName) Allows specify the attribute containing an override class name if it is present.FactoryCreateBuilder.usingFactory
(ObjectCreationFactory<T> creationFactory) Construct a factory create rule using the given, already instantiated,ObjectCreationFactory
.