Uses of Class
com.amazonaws.services.dynamodbv2.xspec.FunctionCondition
Packages that use FunctionCondition
Package
Description
A request-centric Expression Specification Builder package that can be used to construct valid
expressions, and the respective name maps and value maps, for various DynamoDB requests in a typeful manner.
-
Uses of FunctionCondition in com.amazonaws.services.dynamodbv2.xspec
Methods in com.amazonaws.services.dynamodbv2.xspec that return FunctionConditionModifier and TypeMethodDescriptionstatic <T> FunctionCondition
ExpressionSpecBuilder.attribute_exists
(PathOperand pathOperand) Returns a function condition (that evaluates to true if the attribute of the specified path operand exists) for building condition expression.static <T> FunctionCondition
ExpressionSpecBuilder.attribute_exists
(String path) Returns a function condition (that evaluates to true if the attribute at the specified path exists) for building condition expression.static FunctionCondition
ExpressionSpecBuilder.attribute_not_exists
(PathOperand pathOperand) Returns a function condition (that evaluates to true if the attribute of the specified path operand does not exist) for building condition expression.static FunctionCondition
ExpressionSpecBuilder.attribute_not_exists
(String path) Returns a function condition (that evaluates to true if the attribute at the specified path does not exist) for building condition expression.S.beginsWith
(String value) Returns a function condition (that evaluates to true if the value of the current attribute begins with the specified operand) for building condition expression.BS.contains
(byte[] value) Returns anFunctionCondition
object which represents an contains(path, operand) function condition where path refers to that of the current path operand; used for building expressions.BS.contains
(ByteBuffer value) Returns anFunctionCondition
object which represents an contains(path, operand) function condition where path refers to that of the current path operand; used for building expressions.Returns anFunctionCondition
object which represents an contains(path, operand) function condition where path refers to that of the current path operand; used for building expressions.Returns a function condition (that evaluates to true if the value of the current attribute contains the specified substring) for building condition expression.Returns anFunctionCondition
object which represents an contains(path, operand) function condition where path refers to that of the current path operand; used for building expressions.final FunctionCondition
PathOperand.exists()
Returns a function condition (that evaluates to true if the attribute referred to by this path operand exists) for building condition expression.final FunctionCondition
PathOperand.notExists()
Returns a function condition (that evaluates to true if the attribute referred to by this path operand does not exist) for building condition expression.