ObjectFactory.ObjectFactoryInstance |
ObjectFactory.createInstance(String className) |
Creates an instance builder.
|
ObjectFactory.ObjectFactoryInstance |
ObjectFactory.ObjectFactoryInstance.ignoreUnknownProperties() |
If called the unsupported properties will be ignored otherwise create(Class)
will fail with an exception.
|
ObjectFactory.ObjectFactoryInstance |
ObjectFactory.ObjectFactoryInstance.withFieldInjection() |
Set that the properties can be injected into fields directly, default uses fields
but not private ones.
|
ObjectFactory.ObjectFactoryInstance |
ObjectFactory.ObjectFactoryInstance.withoutFieldInjection() |
Set that the properties can NOT be injected into fields directly.
|
ObjectFactory.ObjectFactoryInstance |
ObjectFactory.ObjectFactoryInstance.withProperties(Map<String,?> properties) |
|
default <T> ObjectFactory.ObjectFactoryInstance |
ObjectFactory.ObjectFactoryInstance.withProperties(Stream<T> stream,
Function<T,String> keyExtractor,
Function<T,?> valueExtractor) |
|