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