Package org.apache.flink.types
Interface ResettableValue<T extends Value>
-
- All Superinterfaces:
IOReadableWritable
,Serializable
,Value
- All Known Implementing Classes:
BooleanValue
,ByteValue
,CharValue
,DoubleValue
,FloatValue
,IntValue
,LongValue
,ShortValue
,StringValue
@Public public interface ResettableValue<T extends Value> extends Value
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setValue(T value)
Sets the encapsulated value to another value-
Methods inherited from interface org.apache.flink.core.io.IOReadableWritable
read, write
-
-
-
-
Method Detail
-
setValue
void setValue(T value)
Sets the encapsulated value to another value- Parameters:
value
- the new value of the encapsulated value
-
-