FindStatement |
FindStatement.fields(Expression docProjection) |
Add/replace the field projection defining the result.
|
FindStatement |
FindStatement.fields(String... projections) |
Add/replace the field projections defining the result.
|
FindStatement |
FindStatementImpl.fields(Expression docProjection) |
|
FindStatement |
FindStatementImpl.fields(String... projection) |
|
FindStatement |
Collection.find() |
Create a new find statement retrieving all documents in the collection.
|
FindStatement |
Collection.find(String searchCondition) |
Create a new find statement retrieving documents matching the given search condition.
|
FindStatement |
CollectionImpl.find() |
|
FindStatement |
CollectionImpl.find(String searchCondition) |
|
FindStatement |
FindStatement.groupBy(String... groupBy) |
Add/replace the aggregation fields for this query.
|
FindStatement |
FindStatementImpl.groupBy(String... groupBy) |
|
FindStatement |
FindStatement.having(String having) |
Add/replace the aggregate criteria for this query.
|
FindStatement |
FindStatementImpl.having(String having) |
|
FindStatement |
FindStatement.limit(long numberOfRows) |
Add/replace the document limit for this query.
|
FindStatement |
FindStatement.lockExclusive() |
Locks matching rows exclusively so no other transactions can read or write to them.
|
FindStatement |
FindStatement.lockExclusive(Statement.LockContention lockContention) |
Locks matching rows exclusively so no other transactions can read or write to them, using the provided lock contention option.
|
FindStatement |
FindStatementImpl.lockExclusive() |
|
FindStatement |
FindStatementImpl.lockExclusive(Statement.LockContention lockContention) |
|
FindStatement |
FindStatement.lockShared() |
Locks matching rows against updates.
|
FindStatement |
FindStatement.lockShared(Statement.LockContention lockContention) |
Locks matching rows against updates using the provided lock contention option.
|
FindStatement |
FindStatementImpl.lockShared() |
|
FindStatement |
FindStatementImpl.lockShared(Statement.LockContention lockContention) |
|
FindStatement |
FindStatement.offset(long limitOffset) |
Add/replace the document offset for this query.
|
FindStatement |
FindStatement.orderBy(String... sortFields) |
Add/replace the order specification for this query.
|
default FindStatement |
FindStatement.skip(long limitOffset) |
已过时。
|
FindStatement |
FindStatement.sort(String... sortFields) |
Add/replace the order specification for this query.
|
FindStatement |
FindStatementImpl.where(String searchCondition) |
已过时。
|