You should be able to create MongoCollectionOptions with the appropriate default values. In other words
MongoDatabase db = ...
db.getCollection("my-col", MongoCollectionOptions.builder().build())
should be equiv to
MongoDatabase db = ...
db.getCollection("my-col");