Example usage for com.mongodb.client.model Filters nor

List of usage examples for com.mongodb.client.model Filters nor

Introduction

In this page you can find the example usage for com.mongodb.client.model Filters nor.

Prototype

public static Bson nor(final Iterable<Bson> filters) 

Source Link

Document

Creates a filter that performs a logical NOR operation on all the specified filters.

Usage

From source file:org.eclipse.ditto.services.thingsearch.persistence.read.criteria.visitors.CreateBsonVisitor.java

License:Open Source License

@Override
public Bson visitNor(final Stream<Bson> negativeDisjoints) {
    return Filters.nor(negativeDisjoints.collect(Collectors.toList()));
}