Package com.mongodb.client.model
Class BsonField
- java.lang.Object
-
- com.mongodb.client.model.BsonField
-
public final class BsonField extends Object
A representation of a BSON document field whose value is another BSON document.- Since:
- 3.1
- See Also:
Aggregates.group(Object, BsonField...)
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
Gets the field nameorg.bson.conversions.Bson
getValue()
Gets the field valueString
toString()
-
-
-
Constructor Detail
-
BsonField
public BsonField(String name, org.bson.conversions.Bson value)
Construct an instance- Parameters:
name
- the field namevalue
- the field value
-
-