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 boolean
canReadValue(TypedValueField value)
protected boolean
canWriteValue(TypedValue value)
NullValueImpl
convertToTypedValue(UntypedValueImpl untypedValue)
String
getName()
protected boolean
isNull(Object value)
NullValueImpl
readValue(TypedValueField typedValueField, boolean deserialize)
void
writeValue(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:
canWriteValue
in classAbstractTypedValueMapper<NullValueImpl>
-
canReadValue
protected boolean canReadValue(TypedValueField value)
- Specified by:
canReadValue
in classAbstractTypedValueMapper<NullValueImpl>
-
-