Interface GenericDoubleState
-
- All Superinterfaces:
AccumulatorState
public interface GenericDoubleState extends AccumulatorState
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description doublegetValue()booleanisNull()default voidset(GenericDoubleState state)voidsetNull(boolean value)voidsetValue(double value)static voidwrite(Type type, GenericDoubleState state, BlockBuilder out)-
Methods inherited from interface io.trino.spi.function.AccumulatorState
copy, getEstimatedSize
-
-
-
-
Method Detail
-
getValue
double getValue()
-
setValue
void setValue(double value)
-
isNull
boolean isNull()
-
setNull
void setNull(boolean value)
-
set
default void set(GenericDoubleState state)
-
write
static void write(Type type, GenericDoubleState state, BlockBuilder out)
-
-