Class ValueFieldsImpl
- java.lang.Object
-
- org.camunda.bpm.engine.impl.variable.serializer.ValueFieldsImpl
-
- All Implemented Interfaces:
Nameable,ValueFields
public class ValueFieldsImpl extends Object implements ValueFields
- Author:
- Thorben Lindhauer
-
-
Field Summary
Fields Modifier and Type Field Description protected byte[]byteArrayValueprotected DoubledoubleValueprotected LonglongValueprotected Stringtextprotected Stringtext2
-
Constructor Summary
Constructors Constructor Description ValueFieldsImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getByteArrayValue()DoublegetDoubleValue()LonggetLongValue()StringgetName()StringgetTextValue()StringgetTextValue2()voidsetByteArrayValue(byte[] bytes)voidsetDoubleValue(Double doubleValue)voidsetLongValue(Long longValue)voidsetTextValue(String textValue)voidsetTextValue2(String textValue2)
-
-
-
Method Detail
-
getTextValue
public String getTextValue()
- Specified by:
getTextValuein interfaceValueFields
-
setTextValue
public void setTextValue(String textValue)
- Specified by:
setTextValuein interfaceValueFields
-
getTextValue2
public String getTextValue2()
- Specified by:
getTextValue2in interfaceValueFields
-
setTextValue2
public void setTextValue2(String textValue2)
- Specified by:
setTextValue2in interfaceValueFields
-
getLongValue
public Long getLongValue()
- Specified by:
getLongValuein interfaceValueFields
-
setLongValue
public void setLongValue(Long longValue)
- Specified by:
setLongValuein interfaceValueFields
-
getDoubleValue
public Double getDoubleValue()
- Specified by:
getDoubleValuein interfaceValueFields
-
setDoubleValue
public void setDoubleValue(Double doubleValue)
- Specified by:
setDoubleValuein interfaceValueFields
-
getByteArrayValue
public byte[] getByteArrayValue()
- Specified by:
getByteArrayValuein interfaceValueFields
-
setByteArrayValue
public void setByteArrayValue(byte[] bytes)
- Specified by:
setByteArrayValuein interfaceValueFields
-
-