Uses of Class
io.helidon.dbclient.DbStatementType
-
Packages that use DbStatementType Package Description io.helidon.dbclient Reactive Database API for Helidon.io.helidon.dbclient.common Helper classes to use in various implementations.io.helidon.dbclient.jdbc Helidon DB implementation for JDBC.io.helidon.dbclient.metrics Metrics support for Helidon DB Client.io.helidon.dbclient.mongodb Helidon DB integration for reactive mongoDB.io.helidon.dbclient.spi Service provider interface for Helidon DB. -
-
Uses of DbStatementType in io.helidon.dbclient
Methods in io.helidon.dbclient that return DbStatementType Modifier and Type Method Description DbStatementTypeDbInterceptorContext. statementType()Type of the statement being executed.static DbStatementTypeDbStatementType. valueOf(String name)Returns the enum constant of this type with the specified name.static DbStatementType[]DbStatementType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.helidon.dbclient with parameters of type DbStatementType Modifier and Type Method Description DbClient.BuilderDbClient.Builder. addInterceptor(DbInterceptor interceptor, DbStatementType... dbStatementTypes)Add an interceptor to specific statement types.DbInterceptorContextDbInterceptorContext. statementType(DbStatementType type)Set the type of the statement. -
Uses of DbStatementType in io.helidon.dbclient.common
Methods in io.helidon.dbclient.common that return DbStatementType Modifier and Type Method Description protected DbStatementTypeAbstractStatement. statementType()Type of this statement.Methods in io.helidon.dbclient.common with parameters of type DbStatementType Modifier and Type Method Description InterceptorSupport.BuilderInterceptorSupport.Builder. add(DbInterceptor interceptor, DbStatementType... dbStatementTypes)protected StringAbstractDbExecute. generateName(DbStatementType type, String statement)Generate a name for a statement.List<DbInterceptor>InterceptorSupport. interceptors(DbStatementType dbStatementType, String statementName)Get a list of interceptors to be executed for the specified statement.Constructors in io.helidon.dbclient.common with parameters of type DbStatementType Constructor Description AbstractStatement(DbStatementType dbStatementType, String statementName, String statement, DbMapperManager dbMapperManager, MapperManager mapperManager, InterceptorSupport interceptors)Statement that handles parameters. -
Uses of DbStatementType in io.helidon.dbclient.jdbc
Methods in io.helidon.dbclient.jdbc with parameters of type DbStatementType Modifier and Type Method Description JdbcDbClientProviderBuilderJdbcDbClientProviderBuilder. addInterceptor(DbInterceptor interceptor, DbStatementType... dbStatementTypes) -
Uses of DbStatementType in io.helidon.dbclient.metrics
Method parameters in io.helidon.dbclient.metrics with type arguments of type DbStatementType Modifier and Type Method Description TDbMetricBuilder. nameFormat(BiFunction<String,DbStatementType,String> function)Configure a name format function. -
Uses of DbStatementType in io.helidon.dbclient.mongodb
Methods in io.helidon.dbclient.mongodb that return DbStatementType Modifier and Type Method Description protected DbStatementTypeMongoDbStatementDml. statementType()Methods in io.helidon.dbclient.mongodb with parameters of type DbStatementType Modifier and Type Method Description MongoDbClientProviderBuilderMongoDbClientProviderBuilder. addInterceptor(DbInterceptor interceptor, DbStatementType... dbStatementTypes) -
Uses of DbStatementType in io.helidon.dbclient.spi
Methods in io.helidon.dbclient.spi with parameters of type DbStatementType Modifier and Type Method Description TDbClientProviderBuilder. addInterceptor(DbInterceptor interceptor, DbStatementType... dbStatementTypes)Add an interceptor thas is active only on configured statement types.
-