public final class StatementBuilder
extends java.lang.Object
public static CreateNamespaceStatementBuilder.Start createNamespace(java.lang.String namespaceName)
CreateNamespaceStatement
.namespaceName
- a namespace name to createpublic static DropNamespaceStatementBuilder.Start dropNamespace(java.lang.String namespaceName)
DropNamespaceStatement
.namespaceName
- a namespace name to droppublic static CreateTableStatementBuilder.Start createTable(@Nullable java.lang.String namespaceName, java.lang.String tableName)
CreateTableStatement
.namespaceName
- a namespace to createtableName
- a table name to createpublic static CreateTableStatementBuilder.Start createTable(java.lang.String tableName)
CreateTableStatement
.tableName
- a table name to createpublic static DropTableStatementBuilder.Start dropTable(@Nullable java.lang.String namespaceName, java.lang.String tableName)
DropTableStatement
.namespaceName
- a namespace to droptableName
- a table name to droppublic static DropTableStatementBuilder.Start dropTable(java.lang.String tableName)
DropTableStatement
.tableName
- a table name to droppublic static TruncateTableStatementBuilder.Start truncateTable(@Nullable java.lang.String namespaceName, java.lang.String tableName)
TruncateTableStatement
.namespaceName
- a namespace to truncatetableName
- a table name to truncatepublic static TruncateTableStatementBuilder.Start truncateTable(java.lang.String tableName)
TruncateTableStatement
.tableName
- a table name to truncatepublic static CreateCoordinatorTablesStatementBuilder.Start createCoordinatorTables()
CreateCoordinatorTablesStatement
.public static DropCoordinatorTablesStatementBuilder.Start dropCoordinatorTables()
DropCoordinatorTablesStatement
.public static TruncateCoordinatorTablesStatementBuilder.Start truncateCoordinatorTables()
TruncateCoordinatorTablesStatement
.public static CreateIndexStatementBuilder.Start createIndex()
CreateIndexStatement
.public static DropIndexStatementBuilder.Start dropIndex()
DropIndexStatement
.public static AlterTableStatementBuilder.Start alterTable(@Nullable java.lang.String namespaceName, java.lang.String tableName)
AlterTableAddColumnStatement
.namespaceName
- a namespace to altertableName
- a table name to alterpublic static AlterTableStatementBuilder.Start alterTable(java.lang.String tableName)
AlterTableAddColumnStatement
.tableName
- a table name to alterpublic static SelectStatementBuilder.Start select()
SelectStatement
.public static SelectStatementBuilder.Start select(java.lang.String... projectedColumnNames)
SelectStatement
with
projections.projectedColumnNames
- column names to projectpublic static SelectStatementBuilder.Start select(Projection... projections)
SelectStatement
with
projections.projections
- projectionspublic static SelectStatementBuilder.Start select(java.util.List<Projection> projections)
SelectStatement
with
projections.projections
- projectionspublic static InsertStatementBuilder.Start insertInto(@Nullable java.lang.String namespaceName, java.lang.String tableName)
InsertStatement
.namespaceName
- the namespace name of the target tabletableName
- the table name of the target tablepublic static InsertStatementBuilder.Start insertInto(java.lang.String tableName)
InsertStatement
.tableName
- the table name of the target tablepublic static UpsertStatementBuilder.Start upsertInto(@Nullable java.lang.String namespaceName, java.lang.String tableName)
UpsertStatement
.namespaceName
- the namespace name of the target tabletableName
- the table name of the target tablepublic static UpsertStatementBuilder.Start upsertInto(java.lang.String tableName)
UpsertStatement
.tableName
- the table name of the target tablepublic static UpdateStatementBuilder.Start update(@Nullable java.lang.String namespaceName, java.lang.String tableName)
UpdateStatement
.namespaceName
- the namespace name of the target tabletableName
- the table name of the target tablepublic static UpdateStatementBuilder.Start update(java.lang.String tableName)
UpdateStatement
.tableName
- the table name of the target tablepublic static DeleteStatementBuilder.Start deleteFrom(@Nullable java.lang.String namespaceName, java.lang.String tableName)
DeleteStatement
.namespaceName
- the namespace name of the target tabletableName
- the table name of the target tablepublic static DeleteStatementBuilder.Start deleteFrom(java.lang.String tableName)
DeleteStatement
.tableName
- the table name of the target tablepublic static CreateUserStatementBuilder.Start createUser(java.lang.String username)
CreateUserStatement
.username
- a username to createpublic static AlterUserStatementBuilder.Start alterUser(java.lang.String username)
AlterUserStatement
.username
- a username to alterpublic static DropUserStatementBuilder.Start dropUser(java.lang.String username)
DropUserStatement
.username
- a username to droppublic static GrantStatementBuilder.Start grant(Privilege... privileges)
GrantStatement
.privileges
- privileges to grantpublic static RevokeStatementBuilder.Start revoke(Privilege... privileges)
RevokeStatement
.privileges
- privileges to revokepublic static CreateAbacPolicyStatementBuilder.Start createAbacPolicy(java.lang.String policyName)
CreateAbacPolicyStatement
.policyName
- the name of the policy to createpublic static EnableAbacPolicyStatementBuilder.Start enableAbacPolicy(java.lang.String policyName)
EnableAbacPolicyStatement
.policyName
- the name of the policy to enablepublic static DisableAbacPolicyStatementBuilder.Start disableAbacPolicy(java.lang.String policyName)
DisableAbacPolicyStatement
.policyName
- the name of the policy to disablepublic static CreateAbacLevelStatementBuilder.Start createAbacLevel(java.lang.String levelShortName)
CreateAbacLevelStatement
.levelShortName
- the short name of the levelpublic static DropAbacLevelStatementBuilder.Start dropAbacLevel(java.lang.String levelShortName)
DropAbacLevelStatement
.levelShortName
- the short name of the levelpublic static CreateAbacCompartmentStatementBuilder.Start createAbacCompartment(java.lang.String compartmentShortName)
CreateAbacCompartmentStatement
.compartmentShortName
- the short name of the compartmentpublic static DropAbacCompartmentStatementBuilder.Start dropAbacCompartment(java.lang.String compartmentShortName)
DropAbacCompartmentStatement
.compartmentShortName
- the short name of the compartmentpublic static CreateAbacGroupStatementBuilder.Start createAbacGroup(java.lang.String groupShortName)
CreateAbacGroupStatement
.groupShortName
- the short name of the grouppublic static DropAbacGroupStatementBuilder.Start dropAbacGroup(java.lang.String groupShortName)
DropAbacGroupStatement
.groupShortName
- the short name of the grouppublic static SetAbacLevelsForUserStatementBuilder.Start setAbacLevel(java.lang.String levelShortName)
SetAbacLevelsForUserStatement
.levelShortName
- the short name of the levelpublic static AddAbacCompartmentToUserStatementBuilder.Start addAbacCompartment(java.lang.String compartmentShortName)
AddAbacCompartmentToUserStatement
.compartmentShortName
- the short name of the compartmentpublic static RemoveAbacCompartmentFromUserStatementBuilder.Start removeAbacCompartment(java.lang.String compartmentShortName)
RemoveAbacCompartmentFromUserStatement
.compartmentShortName
- the short name of the compartmentpublic static AddAbacGroupToUserStatementBuilder.Start addAbacGroup(java.lang.String groupShortName)
AddAbacGroupToUserStatement
.groupShortName
- the short name of the grouppublic static RemoveAbacGroupFromUserStatementBuilder.Start removeAbacGroup(java.lang.String groupShortName)
RemoveAbacGroupFromUserStatement
.groupShortName
- the short name of the grouppublic static DropAbacUserTagInfoFromUserStatementBuilder.Start dropAbacUserTagInfoFromUser(java.lang.String username)
DropAbacUserTagInfoFromUserStatement
.username
- the name of the userpublic static CreateAbacNamespacePolicyStatementBuilder.Start createAbacNamespacePolicy(java.lang.String namespacePolicyName)
CreateAbacNamespacePolicyStatement
namespacePolicyName
- the name of the namespace policypublic static EnableAbacNamespacePolicyStatementBuilder.Start enableAbacNamespacePolicy(java.lang.String namespacePolicyName)
EnableAbacNamespacePolicyStatement
.namespacePolicyName
- the name of the namespace policypublic static DisableAbacNamespacePolicyStatementBuilder.Start disableAbacNamespacePolicy(java.lang.String namespacePolicyName)
DisableAbacNamespacePolicyStatement
.namespacePolicyName
- the name of the namespace policypublic static CreateAbacTablePolicyStatementBuilder.Start createAbacTablePolicy(java.lang.String tablePolicyName)
CreateAbacTablePolicyStatement
tablePolicyName
- the name of the table policypublic static EnableAbacTablePolicyStatementBuilder.Start enableAbacTablePolicy(java.lang.String tablePolicyName)
EnableAbacTablePolicyStatement
.tablePolicyName
- the name of the table policypublic static DisableAbacTablePolicyStatementBuilder.Start disableAbacTablePolicy(java.lang.String tablePolicyName)
DisableAbacTablePolicyStatement
.tablePolicyName
- the name of the table policypublic static BeginStatementBuilder.Start begin()
BeginStatement
.public static StartTransactionStatementBuilder.Start startTransaction()
StartTransactionStatement
.public static JoinStatementBuilder.Start join(java.lang.String transactionId)
JoinStatement
.transactionId
- a transaction ID to joinpublic static SuspendStatementBuilder.Start suspend()
SuspendStatement
.public static ResumeStatementBuilder.Start resume(java.lang.String transactionId)
ResumeStatement
.transactionId
- a transaction ID to resumepublic static PrepareStatementBuilder.Start prepare()
PrepareStatement
.public static ValidateStatementBuilder.Start validate()
ValidateStatement
.public static CommitStatementBuilder.Start commit()
CommitStatement
.public static RollbackStatementBuilder.Start rollback()
RollbackStatement
.public static AbortStatementBuilder.Start abort()
AbortStatement
.public static UseStatementBuilder.Start use(java.lang.String namespaceName)
UseStatement
.namespaceName
- the name of the target namespacepublic static SetModeStatementBuilder.Start setMode(TransactionMode transactionMode)
SetModeStatement
.transactionMode
- a transaction mode to setpublic static ShowNamespacesStatementBuilder.Start showNamespaces()
ShowNamespacesStatement
.public static ShowTablesStatementBuilder.Start showTables()
ShowTablesStatement
.public static DescribeStatementBuilder.Start describe(@Nullable java.lang.String namespaceName, java.lang.String tableName)
DescribeStatement
.namespaceName
- the namespace name of the target tabletableName
- the table name of the target tablepublic static DescribeStatementBuilder.Start describe(java.lang.String tableName)
DescribeStatement
.tableName
- the table name of the target tablepublic static ShowUsersStatementBuilder.Start showUsers()
ShowUsersStatement
.public static ShowGrantsStatementBuilder.Start showGrants()
ShowGrantsStatement
.public static ShowAbacPolicyStatementBuilder.Start showAbacPolicy(java.lang.String policyName)
ShowAbacPolicyStatement
.policyName
- the name of the policypublic static ShowAbacPoliciesStatementBuilder.Start showAbacPolicies()
ShowAbacPoliciesStatement
.public static ShowAbacLevelStatementBuilder.Start showAbacLevel(java.lang.String levelShortName)
ShowAbacLevelStatement
.levelShortName
- the short name of the levelpublic static ShowAbacLevelsStatementBuilder.Start showAbacLevelsInPolicy(java.lang.String policyName)
ShowAbacLevelsStatement
.policyName
- the name of the policypublic static ShowAbacCompartmentStatementBuilder.Start showAbacCompartment(java.lang.String compartmentShortName)
ShowAbacCompartmentStatement
.compartmentShortName
- the short name of the compartmentpublic static ShowAbacCompartmentsStatementBuilder.Start showAbacCompartmentsInPolicy(java.lang.String policyName)
ShowAbacCompartmentsStatement
.policyName
- the name of the policypublic static ShowAbacGroupStatementBuilder.Start showAbacGroup(java.lang.String groupShortName)
ShowAbacGroupStatement
.groupShortName
- the short name of the grouppublic static ShowAbacGroupsStatementBuilder.Start showAbacGroupsInPolicy(java.lang.String policyName)
ShowAbacGroupsStatement
.policyName
- the name of the policypublic static ShowAbacUserTagInfoStatementBuilder.Start showAbacUserTagInfo()
ShowAbacUserTagInfoStatement
.public static ShowAbacNamespacePolicyStatementBuilder.Start showAbacNamespacePolicy(java.lang.String namespacePolicyName)
ShowAbacNamespacePolicyStatement
.namespacePolicyName
- the name of the namespace policypublic static ShowAbacNamespacePoliciesStatementBuilder.Start showAbacNamespacePolicies()
ShowAbacNamespacePoliciesStatement
.public static ShowAbacTablePolicyStatementBuilder.Start showAbacTablePolicy(java.lang.String tablePolicyName)
ShowAbacTablePolicyStatement
.tablePolicyName
- the name of the table policypublic static ShowAbacTablePoliciesStatementBuilder.Start showAbacTablePolicies()
ShowAbacTablePoliciesStatement
.