Uses of Interface
guru.mikelue.jdut.operation.OperatorFactory
-
Packages that use OperatorFactory Package Description guru.mikelue.jdut jdata-unit-test(JDUT) is a framework to ease the data building/cleaning for automatic testing, which the test is repeatable without interfere each other.guru.mikelue.jdut.operation The most important objects to effect data to database. -
-
Uses of OperatorFactory in guru.mikelue.jdut
Methods in guru.mikelue.jdut that return types with arguments of type OperatorFactory Modifier and Type Method Description Optional<OperatorFactory>
ConductorConfig. getOperatorFactory()
Gets factory of operator(optional).Methods in guru.mikelue.jdut with parameters of type OperatorFactory Modifier and Type Method Description ConductorConfig.Builder
ConductorConfig.Builder. operatorFactory(OperatorFactory newOperatorFactory)
Sets operator factory. -
Uses of OperatorFactory in guru.mikelue.jdut.operation
Classes in guru.mikelue.jdut.operation that implement OperatorFactory Modifier and Type Class Description class
DefaultOperatorFactory
This implementation would cache the found operator in order to improve performance for looking for corresponding operators.Methods in guru.mikelue.jdut.operation that return OperatorFactory Modifier and Type Method Description static OperatorFactory
DefaultOperatorFactory. build(DataSource newDataSource)
Builds with data source of this object.static OperatorFactory
DefaultOperatorFactory. build(DataSource newDataSource, Consumer<DefaultOperatorFactory.Builder> builderConsumer)
Builds with data source and builder of this object.
-