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.mongodb Helidon DB integration for reactive mongoDB. -
-
Uses of DbStatementType in io.helidon.dbclient
Methods in io.helidon.dbclient that return DbStatementType Modifier and Type Method Description DbStatementType
DbClientServiceContext. statementType()
Type of the statement being executed.static DbStatementType
DbStatementType. 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 DbClientServiceContext
DbClientServiceContext. 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 DbStatementType
AbstractStatement. statementType()
Type of this statement.DbStatementType
DbStatementContext. statementType()
Statement type of this statement.Methods in io.helidon.dbclient.common that return types with arguments of type DbStatementType Modifier and Type Method Description protected Set<DbStatementType>
DbClientServiceBase.DbClientServiceBuilderBase. statementTypes()
Set of statement types.Methods in io.helidon.dbclient.common with parameters of type DbStatementType Modifier and Type Method Description static DbStatementContext
DbStatementContext. create(DbClientContext clientContext, DbStatementType statementType, String statementName, String statementText)
Create a new instance of this class.protected String
AbstractDbExecute. generateName(DbStatementType type, String statement)
Generate a name for a statement.T
DbStatementContext.BuilderBase. statementType(DbStatementType statementType)
Configure statement type.B
DbClientServiceBase.DbClientServiceBuilderBase. statementTypes(DbStatementType... types)
Configure statement types this service will be triggered for.Method parameters in io.helidon.dbclient.common with type arguments of type DbStatementType Modifier and Type Method Description protected B
DbClientServiceBase.DbClientServiceBuilderBase. statementTypes(List<DbStatementType> types)
Configures statement types from configuration. -
Uses of DbStatementType in io.helidon.dbclient.mongodb
Methods in io.helidon.dbclient.mongodb that return DbStatementType Modifier and Type Method Description protected DbStatementType
MongoDbStatementDml. statementType()
-