Package io.debezium.config
Class Instantiator
java.lang.Object
io.debezium.config.Instantiator
Instantiates given classes reflectively.
- Author:
- Jiri Pechanec
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ClassLoaderstatic <T> TgetInstance(String className) Instantiates the specified class either using the no-args constructor.static <T> TgetInstance(String className, Configuration configuration) Instantiates the specified class either using the no-args constructor or the constructor with a single parameter of typeConfiguration, if a configuration object is passed.static <T> TgetInstanceWithProperties(String className, Properties prop) Instantiates the specified class either using the no-args constructor or the constructor with a single parameter of typeProperties, if a properties object is passed.static <T,C> T getInstanceWithProvidedConstructorType(String className, Class<C> constructorType, C constructorValue)
-
Constructor Details
-
Instantiator
public Instantiator()
-
-
Method Details
-
getClassLoader
-
getInstance
Instantiates the specified class either using the no-args constructor.- Returns:
- The newly created instance or
nullif no class name was given
-
getInstance
Instantiates the specified class either using the no-args constructor or the constructor with a single parameter of typeConfiguration, if a configuration object is passed.- Returns:
- The newly created instance or
nullif no class name was given
-
getInstanceWithProperties
Instantiates the specified class either using the no-args constructor or the constructor with a single parameter of typeProperties, if a properties object is passed.- Returns:
- The newly created instance or
nullif no class name was given
-
getInstanceWithProvidedConstructorType
-