Class AbstractTextIndexCreator
- java.lang.Object
-
- org.apache.pinot.segment.local.segment.index.text.AbstractTextIndexCreator
-
- All Implemented Interfaces:
Closeable,AutoCloseable,TextIndexCreator,IndexCreator
- Direct Known Subclasses:
LuceneTextIndexCreator,NativeTextIndexCreator
public abstract class AbstractTextIndexCreator extends Object implements TextIndexCreator
-
-
Constructor Summary
Constructors Constructor Description AbstractTextIndexCreator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(Object[] values, int[] dictIds)voidadd(Object value, int dictId)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.pinot.segment.spi.index.creator.TextIndexCreator
add, add, seal
-
-
-
-
Method Detail
-
add
public void add(@Nonnull Object value, int dictId)- Specified by:
addin interfaceIndexCreator
-
add
public void add(@Nonnull Object[] values, @Nullable int[] dictIds)- Specified by:
addin interfaceIndexCreator
-
-