Interface UpdateStatement
-
- All Superinterfaces:
StructuredQuery
@Immutable public interface UpdateStatement extends StructuredQuery
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
UpdateStatement.Builder
-
Nested classes/interfaces inherited from interface com.apple.foundationdb.relational.api.fluentsql.statement.StructuredQuery
StructuredQuery.QueryOptions
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<StructuredQuery.QueryOptions>
getOptions()
java.util.List<Expression<?>>
getReturning()
java.util.Map<Field<?>,Expression<?>>
getSetClauses()
java.lang.String
getTable()
BooleanExpressionTrait
getWhereClause()
-
Methods inherited from interface com.apple.foundationdb.relational.api.fluentsql.statement.StructuredQuery
getPreparedStatement, getSqlQuery
-
-
-
-
Method Detail
-
getSetClauses
@Nonnull java.util.Map<Field<?>,Expression<?>> getSetClauses()
-
getReturning
@Nonnull java.util.List<Expression<?>> getReturning()
-
getWhereClause
@Nullable BooleanExpressionTrait getWhereClause()
-
getOptions
@Nonnull java.util.Set<StructuredQuery.QueryOptions> getOptions()
-
getTable
@Nonnull java.lang.String getTable()
-
-