Uses of Interface
org.talend.sdk.component.api.service.factory.ObjectFactory.ObjectFactoryInstance
-
Uses of ObjectFactory.ObjectFactoryInstance in org.talend.sdk.component.api.service.factory
Modifier and TypeMethodDescriptionObjectFactory.createInstance
(String className) Creates an instance builder.ObjectFactory.ObjectFactoryInstance.ignoreUnknownProperties()
If called the unsupported properties will be ignored otherwisecreate(Class)
will fail with an exception.ObjectFactory.ObjectFactoryInstance.withFieldInjection()
Set that the properties can be injected into fields directly, default uses fields but not private ones.ObjectFactory.ObjectFactoryInstance.withoutFieldInjection()
Set that the properties can NOT be injected into fields directly.ObjectFactory.ObjectFactoryInstance.withProperties
(Map<String, ?> properties) default <T> ObjectFactory.ObjectFactoryInstance
ObjectFactory.ObjectFactoryInstance.withProperties
(Stream<T> stream, Function<T, String> keyExtractor, Function<T, ?> valueExtractor) Shortcut forwithProperties(Map)
.