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[]
byteArrayValue
protected Double
doubleValue
protected Long
longValue
protected String
text
protected String
text2
-
Constructor Summary
Constructors Constructor Description ValueFieldsImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
getByteArrayValue()
Double
getDoubleValue()
Long
getLongValue()
String
getName()
String
getTextValue()
String
getTextValue2()
void
setByteArrayValue(byte[] bytes)
void
setDoubleValue(Double doubleValue)
void
setLongValue(Long longValue)
void
setTextValue(String textValue)
void
setTextValue2(String textValue2)
-
-
-
Method Detail
-
getTextValue
public String getTextValue()
- Specified by:
getTextValue
in interfaceValueFields
-
setTextValue
public void setTextValue(String textValue)
- Specified by:
setTextValue
in interfaceValueFields
-
getTextValue2
public String getTextValue2()
- Specified by:
getTextValue2
in interfaceValueFields
-
setTextValue2
public void setTextValue2(String textValue2)
- Specified by:
setTextValue2
in interfaceValueFields
-
getLongValue
public Long getLongValue()
- Specified by:
getLongValue
in interfaceValueFields
-
setLongValue
public void setLongValue(Long longValue)
- Specified by:
setLongValue
in interfaceValueFields
-
getDoubleValue
public Double getDoubleValue()
- Specified by:
getDoubleValue
in interfaceValueFields
-
setDoubleValue
public void setDoubleValue(Double doubleValue)
- Specified by:
setDoubleValue
in interfaceValueFields
-
getByteArrayValue
public byte[] getByteArrayValue()
- Specified by:
getByteArrayValue
in interfaceValueFields
-
setByteArrayValue
public void setByteArrayValue(byte[] bytes)
- Specified by:
setByteArrayValue
in interfaceValueFields
-
-