Interface TriStateBooleanState
-
- All Superinterfaces:
AccumulatorState
public interface TriStateBooleanState extends AccumulatorState
-
-
Field Summary
Fields Modifier and Type Field Description static byteFALSE_VALUEstatic byteNULL_VALUEstatic byteTRUE_VALUE
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description bytegetValue()voidsetValue(byte value)static voidwrite(Type type, TriStateBooleanState state, BlockBuilder out)-
Methods inherited from interface io.trino.spi.function.AccumulatorState
copy, getEstimatedSize
-
-
-
-
Field Detail
-
NULL_VALUE
static final byte NULL_VALUE
- See Also:
- Constant Field Values
-
TRUE_VALUE
static final byte TRUE_VALUE
- See Also:
- Constant Field Values
-
FALSE_VALUE
static final byte FALSE_VALUE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getValue
byte getValue()
-
setValue
void setValue(byte value)
-
write
static void write(Type type, TriStateBooleanState state, BlockBuilder out)
-
-