Package org.mongojack
Interface UpdateOperationValue
-
- All Known Implementing Classes:
ComplexUpdateOperationValue
,MultiUpdateOperationValue
,SingleUpdateOperationValue
public interface UpdateOperationValue
A DB update operation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
getValue()
Get the valueboolean
isTargetCollection()
Whether the target field for these values is a collection.boolean
requiresSerialization()
Whether the value requires serialization
-
-
-
Method Detail
-
isTargetCollection
boolean isTargetCollection()
Whether the target field for these values is a collection.- Returns:
- True if the target is a collection, false if otherwise
-
requiresSerialization
boolean requiresSerialization()
Whether the value requires serialization- Returns:
- True if the value requires serialization, false if otherwise
-
getValue
Object getValue()
Get the value- Returns:
- The value
-
-