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

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

Introduction

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

Prototype

public Predicates or(final Predicate predicate) 

Source Link

Document

Or-concatenates the given Predicate to the current one.

Usage

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

@Override
protected Predicates or(Predicates base, Predicates criteria) {
    return base.or(criteria);
}