Package | Description |
---|---|
com.mongodb |
The core mongodb package
|
com.mongodb.client |
This package contains classes for the new client api for MongoDatabase and MongoCollection
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
ListIndexesIterableImpl<TResult> |
Modifier and Type | Method and Description |
---|---|
ListIndexesIterable<TResult> |
ListIndexesIterableImpl.batchSize(int batchSize) |
ListIndexesIterable<Document> |
MongoCollectionImpl.listIndexes() |
<TResult> ListIndexesIterable<TResult> |
MongoCollectionImpl.listIndexes(java.lang.Class<TResult> resultClass) |
ListIndexesIterable<TResult> |
ListIndexesIterableImpl.maxTime(long maxTime,
java.util.concurrent.TimeUnit timeUnit) |
Modifier and Type | Method and Description |
---|---|
ListIndexesIterable<TResult> |
ListIndexesIterable.batchSize(int batchSize)
Sets the number of documents to return per batch.
|
ListIndexesIterable<Document> |
MongoCollection.listIndexes()
Get all the indexes in this collection.
|
<TResult> ListIndexesIterable<TResult> |
MongoCollection.listIndexes(java.lang.Class<TResult> resultClass)
Get all the indexes in this collection.
|
ListIndexesIterable<TResult> |
ListIndexesIterable.maxTime(long maxTime,
java.util.concurrent.TimeUnit timeUnit)
Sets the maximum execution time on the server for this operation.
|