Package org.mongojack
Interface UpdateOperationValue
-
- All Known Implementing Classes:
ComplexUpdateOperationValue,MultiUpdateOperationValue,SingleUpdateOperationValue
public interface UpdateOperationValueA DB update operation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectgetValue()Get the valuebooleanisTargetCollection()Whether the target field for these values is a collection.booleanrequiresSerialization()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
-
-