Uses of Class
com.amazonaws.services.dynamodbv2.xspec.InCondition

Packages that use InCondition
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 InCondition in com.amazonaws.services.dynamodbv2.xspec

    Modifier and Type
    Method
    Description
    B.in(byte[]... values)
    Returns an InCondition (that evaluates to true if the value of the current attribute is equal to any of the specified values) for building condition expression.
    B.in(ByteBuffer... values)
    Returns an InCondition (that evaluates to true if the value of the current attribute is equal to any of the specified values) for building condition expression.
    BOOL.in(boolean... values)
    Returns an InCondition (that evaluates to true if the value of the current attribute is equal to any of the specified values) for building condition expression.
    BOOL.in(List<Boolean> values)
    Returns an InCondition (that evaluates to true if the value of the current attribute is equal to any of the values in the specified list) for building condition expression.
    N.in(Number... values)
    Returns an InCondition (that evaluates to true if the value of the current attribute is equal to any of the specified values) for building condition expression.
    final <T extends Number>
    InCondition
    N.in(List<T> values)
    Returns an InCondition (that evaluates to true if the value of the current attribute is equal to any of the values in the specified list) for building condition expression.
    S.in(String... values)
    Returns an InCondition (that evaluates to true if the value of the current attribute is equal to any of the specified values) for building condition expression.
    S.in(List<String> values)
    Returns an InCondition (that evaluates to true if the value of the current attribute is equal to any of the values in the specified list) for building condition expression.
    Returns an InCondition (that evaluates to true if the value of the current attribute is equal to any of the values in the specified list) for building condition expression.
    B.inBytesList(List<byte[]> values)
    Returns an InCondition (that evaluates to true if the value of the current attribute is equal to any of the values in the specified list) for building condition expression.