Interface SpinValue
-
- All Superinterfaces:
java.io.Serializable,SerializableValue,TypedValue
- All Known Implementing Classes:
JsonValueImpl,SpinValueImpl,XmlValueImpl
public interface SpinValue extends SerializableValue
- Author:
- Roman Smirnov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.camunda.spin.spi.DataFormat<? extends org.camunda.spin.Spin<?>>getDataFormat()org.camunda.spin.Spin<?>getValue()Returns the value or null in case the value is null.-
Methods inherited from interface org.camunda.bpm.engine.variable.value.SerializableValue
getSerializationDataFormat, getType, getValueSerialized, isDeserialized
-
Methods inherited from interface org.camunda.bpm.engine.variable.value.TypedValue
isTransient
-
-
-
-
Method Detail
-
getValue
org.camunda.spin.Spin<?> getValue()
Description copied from interface:SerializableValueReturns the value or null in case the value is null.- Specified by:
getValuein interfaceSerializableValue- Specified by:
getValuein interfaceTypedValue- Returns:
- the value represented by this TypedValue.
-
getDataFormat
org.camunda.spin.spi.DataFormat<? extends org.camunda.spin.Spin<?>> getDataFormat()
-
-