Package org.mongojack.internal.update
Class SingleUpdateOperationValue
- java.lang.Object
-
- org.mongojack.internal.update.SingleUpdateOperationValue
-
- All Implemented Interfaces:
UpdateOperationValue
public class SingleUpdateOperationValue extends Object implements UpdateOperationValue
A single update operation value
-
-
Constructor Summary
Constructors Constructor Description SingleUpdateOperationValue(boolean targetCollection, boolean requiresSerialization, Object value)
-
Method Summary
All Methods Instance Methods Concrete 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
-
-
-
Constructor Detail
-
SingleUpdateOperationValue
public SingleUpdateOperationValue(boolean targetCollection, boolean requiresSerialization, Object value)
-
-
Method Detail
-
requiresSerialization
public boolean requiresSerialization()
Description copied from interface:UpdateOperationValue
Whether the value requires serialization- Specified by:
requiresSerialization
in interfaceUpdateOperationValue
- Returns:
- True if the value requires serialization, false if otherwise
-
isTargetCollection
public boolean isTargetCollection()
Description copied from interface:UpdateOperationValue
Whether the target field for these values is a collection.- Specified by:
isTargetCollection
in interfaceUpdateOperationValue
- Returns:
- True if the target is a collection, false if otherwise
-
getValue
public Object getValue()
Description copied from interface:UpdateOperationValue
Get the value- Specified by:
getValue
in interfaceUpdateOperationValue
- Returns:
- The value
-
-