Java Code Examples for org.camunda.bpm.engine.variable.type.ValueType#LONG
The following examples show how to use
org.camunda.bpm.engine.variable.type.ValueType#LONG .
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: LongValueMapper.java From camunda-external-task-client-java with Apache License 2.0 | 4 votes |
public LongValueMapper() { super(ValueType.LONG); }
Example 2
Source File: LongValueSerlializer.java From camunda-bpm-platform with Apache License 2.0 | 4 votes |
public LongValueSerlializer() { super(ValueType.LONG); }
Example 3
Source File: PrimitiveTypeValueImpl.java From camunda-bpm-platform with Apache License 2.0 | 4 votes |
public LongValueImpl(Long value) { super(value, ValueType.LONG); }