Uses of Class
software.amazon.awssdk.enhanced.dynamodb.Expression
Packages that use Expression
Package
Description
-
Uses of Expression in software.amazon.awssdk.enhanced.dynamodb
Methods in software.amazon.awssdk.enhanced.dynamodb that return ExpressionModifier and TypeMethodDescriptionstatic ExpressionExpression.and(Collection<Expression> expressions) Expression.and(Expression expression) Coalesces two complete expressions into a single expression joined by an 'AND'.Expression.and(Expression... expressions) Coalesces multiple complete expressions into a single expression joined by 'AND'.Expression.Builder.build()Builds anExpressionbased on the values stored in this builderstatic ExpressionExpression.join(String joinToken, Collection<Expression> expressions) Coalesces multiple complete expressions into a single expression.static ExpressionExpression.join(String joinToken, Expression... expressions) static ExpressionExpression.join(Expression expression1, Expression expression2, String joinToken) Coalesces two complete expressions into a single expression.static ExpressionExpression.or(Collection<Expression> expressions) Expression.or(Expression... expressions) Coalesces multiple complete expressions into a single expression joined by 'OR'.Methods in software.amazon.awssdk.enhanced.dynamodb with parameters of type ExpressionModifier and TypeMethodDescriptionExpression.and(Expression expression) Coalesces two complete expressions into a single expression joined by an 'AND'.Expression.and(Expression... expressions) Coalesces multiple complete expressions into a single expression joined by 'AND'.static ExpressionExpression.join(String joinToken, Expression... expressions) static ExpressionExpression.join(Expression expression1, Expression expression2, String joinToken) Coalesces two complete expressions into a single expression.Expression.or(Expression... expressions) Coalesces multiple complete expressions into a single expression joined by 'OR'.Method parameters in software.amazon.awssdk.enhanced.dynamodb with type arguments of type ExpressionModifier and TypeMethodDescriptionstatic ExpressionExpression.and(Collection<Expression> expressions) static ExpressionExpression.join(String joinToken, Collection<Expression> expressions) Coalesces multiple complete expressions into a single expression.static ExpressionExpression.or(Collection<Expression> expressions) -
Uses of Expression in software.amazon.awssdk.enhanced.dynamodb.extensions
Methods in software.amazon.awssdk.enhanced.dynamodb.extensions that return ExpressionMethods in software.amazon.awssdk.enhanced.dynamodb.extensions with parameters of type ExpressionModifier and TypeMethodDescriptionWriteModification.Builder.additionalConditionalExpression(Expression additionalConditionalExpression) -
Uses of Expression in software.amazon.awssdk.enhanced.dynamodb.internal.conditional
Methods in software.amazon.awssdk.enhanced.dynamodb.internal.conditional that return ExpressionModifier and TypeMethodDescriptionstatic ExpressionQueryConditionalUtils.buildExpression(StringBuilder expression, Map<String, String> names, Map<String, AttributeValue> values) BeginsWithConditional.expression(TableSchema<?> tableSchema, String indexName) BetweenConditional.expression(TableSchema<?> tableSchema, String indexName) EqualToConditional.expression(TableSchema<?> tableSchema, String indexName) SingleKeyItemConditional.expression(TableSchema<?> tableSchema, String indexName) -
Uses of Expression in software.amazon.awssdk.enhanced.dynamodb.internal.update
Methods in software.amazon.awssdk.enhanced.dynamodb.internal.update that return ExpressionModifier and TypeMethodDescriptionstatic ExpressionUpdateExpressionConverter.toExpression(UpdateExpression expression) Returns anExpressionwhere all update actions in the UpdateExpression have been concatenated according to the rules of DDB Update Expressions, and all expression names and values have been combined into single maps, respectively. -
Uses of Expression in software.amazon.awssdk.enhanced.dynamodb.model
Methods in software.amazon.awssdk.enhanced.dynamodb.model that return ExpressionModifier and TypeMethodDescriptionConditionCheck.conditionExpression()Returns the conditionExpressionset on this object, or null if it doesn't exist.DeleteItemEnhancedRequest.conditionExpression()Returns the conditionExpressionset on this request object, or null if it doesn't exist.PutItemEnhancedRequest.conditionExpression()Returns the conditionExpressionset on this request object, or null if it doesn't exist.TransactDeleteItemEnhancedRequest.conditionExpression()Returns the conditionExpressionset on this request object, or null if it doesn't exist.TransactPutItemEnhancedRequest.conditionExpression()Returns the conditionExpressionset on this request object, or null if it doesn't exist.TransactUpdateItemEnhancedRequest.conditionExpression()Returns the conditionExpressionset on this request object, or null if it doesn't exist.UpdateItemEnhancedRequest.conditionExpression()Returns the conditionExpressionset on this request object, or null if it doesn't exist.QueryConditional.expression(TableSchema<?> tableSchema, String indexName) Generates a conditionalExpressionbased on specific context that is supplied as arguments.QueryEnhancedRequest.filterExpression()Returns the return result filterExpressionset on this request object, or null if it doesn't exist.ScanEnhancedRequest.filterExpression()Returns the return result filterExpressionset on this request object, or null if it doesn't exist.Methods in software.amazon.awssdk.enhanced.dynamodb.model with parameters of type ExpressionModifier and TypeMethodDescriptionConditionCheck.Builder.conditionExpression(Expression conditionExpression) Defines a logical expression on the attributes of table items that match the supplied primary key value(s).DeleteItemEnhancedRequest.Builder.conditionExpression(Expression conditionExpression) Defines a logical expression on an item's attribute values which, if evaluating to true, will allow the delete operation to succeed.PutItemEnhancedRequest.Builder.conditionExpression(Expression conditionExpression) Defines a logical expression on an item's attribute values which, if evaluating to true, will allow the put operation to succeed.TransactDeleteItemEnhancedRequest.Builder.conditionExpression(Expression conditionExpression) Defines a logical expression on an item's attribute values which, if evaluating to true, will allow the delete operation to succeed.TransactPutItemEnhancedRequest.Builder.conditionExpression(Expression conditionExpression) Defines a logical expression on an item's attribute values which, if evaluating to true, will allow the put operation to succeed.TransactUpdateItemEnhancedRequest.Builder.conditionExpression(Expression conditionExpression) Defines a logical expression on an item's attribute values which, if evaluating to true, will allow the update operation to succeed.UpdateItemEnhancedRequest.Builder.conditionExpression(Expression conditionExpression) Defines a logical expression on an item's attribute values which, if evaluating to true, will allow the update operation to succeed.QueryEnhancedRequest.Builder.filterExpression(Expression filterExpression) Refines the query results by applying the filter expression on the results returned from the query and discards items that do not match.ScanEnhancedRequest.Builder.filterExpression(Expression filterExpression) Refines the scan results by applying the filter expression on the results returned from the scan and discards items that do not match.