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