public interface BaseNullableColumnValueSelector
ColumnValueSelector interface for primitive values.| Modifier and Type | Method and Description |
|---|---|
boolean |
isNull()
Returns true if the primitive long, double, or float value returned by this selector should be treated as null.
|
@CalledFromHotLoop boolean isNull()
BaseLongColumnValueSelector.getLong(), BaseDoubleColumnValueSelector.getDouble()
and BaseFloatColumnValueSelector.getFloat() must check this method first, or else they may improperly
use placeholder values returned by the primitive get methods.
Users of BaseObjectColumnValueSelector.getObject() should not call this method. Instead, call "getObject"
and check if it is null.Copyright © 2011–2023 The Apache Software Foundation. All rights reserved.