Package io.trino.operator.aggregation
Interface LongDoubleState
-
- All Superinterfaces:
AccumulatorState
public interface LongDoubleState extends AccumulatorState
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetFirst()doublegetSecond()booleanisFirstNull()booleanisSecondNull()voidsetFirst(long first)voidsetFirstNull(boolean firstNull)voidsetSecond(double second)voidsetSecondNull(boolean secondNull)-
Methods inherited from interface io.trino.spi.function.AccumulatorState
copy, getEstimatedSize
-
-
-
-
Method Detail
-
getFirst
long getFirst()
-
setFirst
void setFirst(long first)
-
isFirstNull
boolean isFirstNull()
-
setFirstNull
void setFirstNull(boolean firstNull)
-
getSecond
double getSecond()
-
setSecond
void setSecond(double second)
-
isSecondNull
boolean isSecondNull()
-
setSecondNull
void setSecondNull(boolean secondNull)
-
-