Interface ColumnIndexContainer
-
- All Superinterfaces:
AutoCloseable,Closeable
public interface ColumnIndexContainer extends Closeable
A container for all the indexes for a column.
-
-
Method Summary
Modifier and Type Method Description BloomFilterReadergetBloomFilter()Returns the bloom filter for the column, ornullif it does not exist.DictionarygetDictionary()Returns the dictionary for the column, ornullif it does not exist.ForwardIndexReader<?>getForwardIndex()Returns the forward index for the column.TextIndexReadergetFSTIndex()Returns the FST index for the column, ornullif it does not exist.H3IndexReadergetH3Index()Returns the H3 index for the column, ornullif it does not exist.InvertedIndexReader<?>getInvertedIndex()Returns the inverted index for the column, ornullif it does not exist.JsonIndexReadergetJsonIndex()Returns the json index for the column, ornullif it does not exist.NullValueVectorReadergetNullValueVector()Returns the null value vector for the column, ornullif it does not exist.RangeIndexReader<?>getRangeIndex()Returns the range index for the column, ornullif it does not exist.TextIndexReadergetTextIndex()Returns the text index for the column, ornullif it does not exist.
-
-
-
Method Detail
-
getForwardIndex
ForwardIndexReader<?> getForwardIndex()
Returns the forward index for the column.
-
getInvertedIndex
InvertedIndexReader<?> getInvertedIndex()
Returns the inverted index for the column, ornullif it does not exist.
-
getRangeIndex
RangeIndexReader<?> getRangeIndex()
Returns the range index for the column, ornullif it does not exist.
-
getTextIndex
TextIndexReader getTextIndex()
Returns the text index for the column, ornullif it does not exist.
-
getFSTIndex
TextIndexReader getFSTIndex()
Returns the FST index for the column, ornullif it does not exist.
-
getJsonIndex
JsonIndexReader getJsonIndex()
Returns the json index for the column, ornullif it does not exist.
-
getH3Index
H3IndexReader getH3Index()
Returns the H3 index for the column, ornullif it does not exist.
-
getDictionary
Dictionary getDictionary()
Returns the dictionary for the column, ornullif it does not exist.
-
getBloomFilter
BloomFilterReader getBloomFilter()
Returns the bloom filter for the column, ornullif it does not exist.
-
getNullValueVector
NullValueVectorReader getNullValueVector()
Returns the null value vector for the column, ornullif it does not exist.- Returns:
-
-