Uses of Class
org.apache.commons.digester3.binder.FactoryCreateBuilder
-
Packages that use FactoryCreateBuilder Package Description org.apache.commons.digester3.binder 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 FactoryCreateBuilder Modifier and Type Method Description FactoryCreateBuilder
LinkedRuleBuilder. factoryCreate()
Uses anObjectCreationFactory
to create a new object which it pushes onto the object stack.FactoryCreateBuilder
FactoryCreateBuilder. ignoreCreateExceptions(boolean ignoreCreateExceptions)
Exceptions thrown by the object creation factory will be ignored or not.FactoryCreateBuilder
FactoryCreateBuilder. ofType(java.lang.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.FactoryCreateBuilder
FactoryCreateBuilder. ofType(java.lang.String className)
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
FactoryCreateBuilder. overriddenByAttribute(java.lang.String attributeName)
Allows specify the attribute containing an override class name if it is present.<T> FactoryCreateBuilder
FactoryCreateBuilder. usingFactory(ObjectCreationFactory<T> creationFactory)
Construct a factory create rule using the given, already instantiated,ObjectCreationFactory
.
-