Class StringValueSerializer
- java.lang.Object
-
- org.camunda.bpm.engine.impl.variable.serializer.AbstractTypedValueSerializer<T>
-
- org.camunda.bpm.engine.impl.variable.serializer.PrimitiveValueSerializer<StringValue>
-
- org.camunda.bpm.engine.impl.variable.serializer.StringValueSerializer
-
- All Implemented Interfaces:
TypedValueSerializer<StringValue>
public class StringValueSerializer extends PrimitiveValueSerializer<StringValue>
- Author:
- Tom Baeyens, Daniel Meyer
-
-
Field Summary
Fields Modifier and Type Field Description static String
EMPTY_STRING
-
Fields inherited from class org.camunda.bpm.engine.impl.variable.serializer.AbstractTypedValueSerializer
BINARY_VALUE_TYPES, valueType
-
-
Constructor Summary
Constructors Constructor Description StringValueSerializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringValue
convertToTypedValue(UntypedValueImpl untypedValue)
Returns a typed value for the provided untyped value.StringValue
readValue(ValueFields valueFields, boolean asTransientValue)
void
writeValue(StringValue variableValue, ValueFields valueFields)
Serialize aTypedValue
to theValueFields
.-
Methods inherited from class org.camunda.bpm.engine.impl.variable.serializer.PrimitiveValueSerializer
canWriteValue, getName, getType, readValue
-
Methods inherited from class org.camunda.bpm.engine.impl.variable.serializer.AbstractTypedValueSerializer
canHandle, getSerializationDataformat, isMutableValue
-
-
-
-
Field Detail
-
EMPTY_STRING
public static final String EMPTY_STRING
- See Also:
- Constant Field Values
-
-
Method Detail
-
convertToTypedValue
public StringValue convertToTypedValue(UntypedValueImpl untypedValue)
Description copied from interface:TypedValueSerializer
Returns a typed value for the provided untyped value. This is used on cases where the user sets an untyped value which is then detected to be handled by thisTypedValueSerializer
(by invocation ofTypedValueSerializer.canHandle(TypedValue)
).- Parameters:
untypedValue
- the untyped value- Returns:
- the corresponding typed value
-
readValue
public StringValue readValue(ValueFields valueFields, boolean asTransientValue)
- Specified by:
readValue
in classPrimitiveValueSerializer<StringValue>
-
writeValue
public void writeValue(StringValue variableValue, ValueFields valueFields)
Description copied from interface:TypedValueSerializer
Serialize aTypedValue
to theValueFields
.- Parameters:
variableValue
- theTypedValue
to persistvalueFields
- theValueFields
to which the value should be persisted
-
-