Class NullValueMapper
- java.lang.Object
-
- org.camunda.bpm.client.variable.impl.AbstractTypedValueMapper<NullValueImpl>
-
- org.camunda.bpm.client.variable.impl.mapper.NullValueMapper
-
- All Implemented Interfaces:
ValueMapper<NullValueImpl>
public class NullValueMapper extends AbstractTypedValueMapper<NullValueImpl>
-
-
Field Summary
-
Fields inherited from class org.camunda.bpm.client.variable.impl.AbstractTypedValueMapper
valueType
-
-
Constructor Summary
Constructors Constructor Description NullValueMapper()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanReadValue(TypedValueField value)protected booleancanWriteValue(TypedValue value)NullValueImplconvertToTypedValue(UntypedValueImpl untypedValue)StringgetName()protected booleanisNull(Object value)NullValueImplreadValue(TypedValueField typedValueField, boolean deserialize)voidwriteValue(NullValueImpl typedValue, TypedValueField typedValueField)-
Methods inherited from class org.camunda.bpm.client.variable.impl.AbstractTypedValueMapper
canHandleTypedValue, canHandleTypedValueField, getSerializationDataformat, getType
-
-
-
-
Method Detail
-
getName
public String getName()
-
convertToTypedValue
public NullValueImpl convertToTypedValue(UntypedValueImpl untypedValue)
-
writeValue
public void writeValue(NullValueImpl typedValue, TypedValueField typedValueField)
-
readValue
public NullValueImpl readValue(TypedValueField typedValueField, boolean deserialize)
-
isNull
protected boolean isNull(Object value)
-
canWriteValue
protected boolean canWriteValue(TypedValue value)
- Specified by:
canWriteValuein classAbstractTypedValueMapper<NullValueImpl>
-
canReadValue
protected boolean canReadValue(TypedValueField value)
- Specified by:
canReadValuein classAbstractTypedValueMapper<NullValueImpl>
-
-