Example usage for com.amazonaws.services.dynamodbv2.model ComparisonOperator IN

List of usage examples for com.amazonaws.services.dynamodbv2.model ComparisonOperator IN

Introduction

In this page you can find the example usage for com.amazonaws.services.dynamodbv2.model ComparisonOperator IN.

Prototype

ComparisonOperator IN

To view the source code for com.amazonaws.services.dynamodbv2.model ComparisonOperator IN.

Click Source Link

Usage

From source file:org.socialsignin.spring.data.dynamodb.repository.query.AbstractDynamoDBQueryCriteria.java

License:Apache License

@Override
public DynamoDBQueryCriteria<T, ID> withPropertyIn(String propertyName, Iterable<?> value,
        Class<?> propertyType) {

    Condition condition = createCollectionCondition(propertyName, ComparisonOperator.IN, value, propertyType);
    return withCondition(propertyName, condition);
}