Java Code Examples for org.camunda.bpm.engine.variable.type.ValueType#DOUBLE
The following examples show how to use
org.camunda.bpm.engine.variable.type.ValueType#DOUBLE .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DoubleValueMapper.java From camunda-external-task-client-java with Apache License 2.0 | 4 votes |
public DoubleValueMapper() { super(ValueType.DOUBLE); }
Example 2
Source File: DoubleValueSerializer.java From camunda-bpm-platform with Apache License 2.0 | 4 votes |
public DoubleValueSerializer() { super(ValueType.DOUBLE); }
Example 3
Source File: PrimitiveTypeValueImpl.java From camunda-bpm-platform with Apache License 2.0 | 4 votes |
public DoubleValueImpl(Double value) { super(value, ValueType.DOUBLE); }