Uses of Class
com.amazonaws.services.dynamodbv2.xspec.B
-
Packages that use B 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 B in com.amazonaws.services.dynamodbv2.xspec
Methods in com.amazonaws.services.dynamodbv2.xspec that return B Modifier and Type Method Description static BExpressionSpecBuilder. B(String path)Creates a path operand that refers to a binary attribute for the purpose of building expressions.Methods in com.amazonaws.services.dynamodbv2.xspec that return types with arguments of type B Modifier and Type Method Description static IfNotExistsFunction<B>ExpressionSpecBuilder. if_not_exists(String path, byte[] defaultValue)Returns anIfNotExistsobject which represents an if_not_exists(path, operand) function call; used for building expression.static IfNotExistsFunction<B>ExpressionSpecBuilder. if_not_exists(String path, ByteBuffer defaultValue)Returns anIfNotExistsobject which represents an if_not_exists(path, operand) function call; used for building expression.IfNotExistsFunction<B>B. ifNotExists(byte[] defaultValue)Returns anIfNotExistsobject which represents an if_not_exists(path, operand) function call where path refers to that of the current path operand; used for building expressions.IfNotExistsFunction<B>B. ifNotExists(B defaultValue)Returns anIfNotExistsobject which represents an if_not_exists(path, operand) function call where path refers to that of the current path operand; used for building expressions.IfNotExistsFunction<B>B. ifNotExists(ByteBuffer defaultValue)Returns anIfNotExistsobject which represents an if_not_exists(path, operand) function call where path refers to that of the current path operand; used for building expressions.Methods in com.amazonaws.services.dynamodbv2.xspec with parameters of type B Modifier and Type Method Description ComparatorConditionB. eq(B that)Returns a comparator condition (that evaluates to true if the value of the current attribute is equal to that of the specified attribute) for building condition expression.IfNotExistsFunction<B>B. ifNotExists(B defaultValue)Returns anIfNotExistsobject which represents an if_not_exists(path, operand) function call where path refers to that of the current path operand; used for building expressions.ComparatorConditionB. ne(B that)Returns a comparator condition (that evaluates to true if the value of the current attribute is not equal to that of the specified attribute) for building condition expression.SetActionB. set(B source)Returns aSetActionobject used for building update expression.Method parameters in com.amazonaws.services.dynamodbv2.xspec with type arguments of type B Modifier and Type Method Description SetActionB. set(IfNotExistsFunction<B> ifNotExistsFunction)Returns aSetActionobject used for building update expression.
-