Class UpdateDescription
- java.lang.Object
-
- com.mongodb.client.model.changestream.UpdateDescription
-
public final class UpdateDescription extends Object
The update description for changed fields in a$changeStream
operation.- Since:
- 3.6
-
-
Constructor Summary
Constructors Constructor Description UpdateDescription(List<String> removedFields, BsonDocument updatedFields)
Creates a new instance
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
List<String>
getRemovedFields()
Returns the removedFieldsBsonDocument
getUpdatedFields()
Returns the updatedFieldsint
hashCode()
String
toString()
-
-
-
Constructor Detail
-
UpdateDescription
public UpdateDescription(@Nullable @BsonProperty("removedFields") List<String> removedFields, @Nullable @BsonProperty("updatedFields") BsonDocument updatedFields)
Creates a new instance- Parameters:
removedFields
- the list of fields that have been removed.updatedFields
- the updated fields
-
-
Method Detail
-
getRemovedFields
@Nullable public List<String> getRemovedFields()
Returns the removedFields- Returns:
- the removedFields
-
getUpdatedFields
@Nullable public BsonDocument getUpdatedFields()
Returns the updatedFields- Returns:
- the updatedFields
-
-