Uses of Class
com.amazonaws.services.dynamodbv2.xspec.PathOperand
-
Packages that use PathOperand Package Description com.amazonaws.services.dynamodbv2.xspec 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 PathOperand in com.amazonaws.services.dynamodbv2.xspec
Subclasses of PathOperand in com.amazonaws.services.dynamodbv2.xspec Modifier and Type Class Description classBA path operand that refers to a binary attribute in DynamoDB; used for building expressions.classBOOLA path operand that refers to a boolean attribute in DynamoDB; used for building expressions.classBSA path operand that refers to a binary set attribute in DynamoDB; used for building expressions.classLA path operand that refers to a list attribute in DynamoDB; used for building expressions.classMA path operand that refers to a map attribute in DynamoDB; used for building expressions.classNA path operand that refers to a number attribute in DynamoDB; used for building expressions.classNSA path operand that refers to a number set attribute in DynamoDB; used for building expressions.classNULLA path operand that refers to a NULL attribute in DynamoDB; used for building expressions.classSA path operand that refers to a string attribute in DynamoDB; used for building expressions.classSSA path operand that refers to a string set attribute in DynamoDB; used for building expressions.Methods in com.amazonaws.services.dynamodbv2.xspec that return PathOperand Modifier and Type Method Description static PathOperandExpressionSpecBuilder. attribute(String path)Returns a path operand that refers to an attribute of some unspecified data type; used for building expressions.Methods in com.amazonaws.services.dynamodbv2.xspec with parameters of type PathOperand Modifier and Type Method Description static <T> FunctionConditionExpressionSpecBuilder. 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 FunctionConditionExpressionSpecBuilder. 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.
-