Package org.bson.conversions
Interface Bson
- All Known Implementing Classes:
BasicDBObject,BsonDocument,BsonDocumentWrapper,CommandResult,Document,RawBsonDocument
Deprecated.
Usage of this API is not supported in AEM as a Cloud Service.
An interface for types that are able to render themselves into a
BsonDocument.- Since:
- 3.0
-
Method Summary
Modifier and TypeMethodDescription<TDocument>
BsonDocumenttoBsonDocument(Class<TDocument> documentClass, CodecRegistry codecRegistry) Deprecated.Render the filter into a BsonDocument.
-
Method Details
-
toBsonDocument
<TDocument> BsonDocument toBsonDocument(Class<TDocument> documentClass, CodecRegistry codecRegistry) Deprecated.Render the filter into a BsonDocument.- Type Parameters:
TDocument- the type of the document class- Parameters:
documentClass- the document class in scope for the collection. This parameter may be ignored, but it may be used to alter the structure of the returnedBsonDocumentbased on some knowledge of the document class.codecRegistry- the codec registry. This parameter may be ignored, but it may be used to look upCodecinstances for the document class or any other related class.- Returns:
- the BsonDocument
-