Interface StringValueSetIndexes
-
- All Known Implementing Classes:
IndexedUtf8ValueIndexes
@Deprecated public interface StringValueSetIndexes
Deprecated.Index on individual values, and provides bitmaps for the rows which contain these values
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description BitmapColumnIndexforSortedValues(SortedSet<String> values)Deprecated.Get the wrappedImmutableBitmapcorresponding to the specified set of values (if they are contained in the underlying column).BitmapColumnIndexforValue(String value)Deprecated.Get the wrappedImmutableBitmapcorresponding to the supplied value.
-
-
-
Method Detail
-
forValue
BitmapColumnIndex forValue(@Nullable String value)
Deprecated.Get the wrappedImmutableBitmapcorresponding to the supplied value. Generates an empty bitmap when passed a value that doesn't exist. Never returns null.
-
forSortedValues
BitmapColumnIndex forSortedValues(SortedSet<String> values)
Deprecated.Get the wrappedImmutableBitmapcorresponding to the specified set of values (if they are contained in the underlying column). The set must be sorted usingComparators.naturalNullsFirst().
-
-