Example usage for org.springframework.data.gemfire.repository.query Predicates and

List of usage examples for org.springframework.data.gemfire.repository.query Predicates and

Introduction

In this page you can find the example usage for org.springframework.data.gemfire.repository.query Predicates and.

Prototype

public Predicates and(final Predicate predicate) 

Source Link

Document

And-concatenates the given Predicate to the current one.

Usage

From source file:org.springframework.data.gemfire.repository.query.GemfireQueryCreator.java

@Override
protected Predicates and(Part part, Predicates base, Iterator<Object> iterator) {
    return base.and(Predicates.create(part, this.indexes));
}