Example usage for com.mongodb.client.model DBCollectionFindOptions copy

List of usage examples for com.mongodb.client.model DBCollectionFindOptions copy

Introduction

In this page you can find the example usage for com.mongodb.client.model DBCollectionFindOptions copy.

Prototype

public DBCollectionFindOptions copy() 

Source Link

Document

Copy this DBCollectionFindOptions instance into a new instance.

Usage

From source file:org.mongodb.morphia.query.FindOptions.java

License:Apache License

private FindOptions(final DBCollectionFindOptions copy) {
    options = copy.copy();
}