Package | Description |
---|---|
com.mongodb |
This package is the main entry point to the MongoDB Java Driver, and it contains the classes for the existing API from 2.x versions.
|
com.mongodb.async.client |
This packages contains classes for the new async client
|
com.mongodb.client |
This package contains client interfaces
|
com.mongodb.client.model |
This package contains models and options that help describe MongoCollection operations
|
com.mongodb.operation |
The core of the MongoDB driver works via operations, using the command pattern.
|
Modifier and Type | Method and Description |
---|---|
static CursorType |
CursorType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CursorType[] |
CursorType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
FindIterable<T> |
FindIterable.cursorType(CursorType cursorType)
Sets the cursor type.
|
Modifier and Type | Method and Description |
---|---|
FindIterable<TResult> |
FindIterable.cursorType(CursorType cursorType)
Sets the cursor type.
|
Modifier and Type | Method and Description |
---|---|
CursorType |
FindOptions.getCursorType()
Get the cursor type.
|
Modifier and Type | Method and Description |
---|---|
FindOptions |
FindOptions.cursorType(CursorType cursorType)
Sets the cursor type.
|
Modifier and Type | Method and Description |
---|---|
CursorType |
FindOperation.getCursorType()
Get the cursor type.
|
Modifier and Type | Method and Description |
---|---|
FindOperation<T> |
FindOperation.cursorType(CursorType cursorType)
Sets the cursor type.
|
Copyright © 2016. All Rights Reserved.