Package com.arcadedb.index
Interface IndexCursor
-
- All Superinterfaces:
Cursor
,Iterable<Identifiable>
,Iterator<Identifiable>
- All Known Implementing Classes:
EmptyIndexCursor
,IndexCursorCollection
,LSMTreeIndexCursor
,MultiIndexCursor
,TempIndexCursor
public interface IndexCursor extends Cursor
Cursor to browse an result set from an index.- Author:
- Luca Garulli ([email protected])
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
close()
default String
dumpStats()
byte[]
getBinaryKeyTypes()
BinaryComparator
getComparator()
Object[]
getKeys()
Identifiable
getRecord()
-
Methods inherited from interface com.arcadedb.database.Cursor
estimateSize
-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
Methods inherited from interface java.util.Iterator
forEachRemaining, hasNext, next, remove
-
-
-
-
Method Detail
-
getKeys
Object[] getKeys()
-
getRecord
Identifiable getRecord()
-
close
default void close()
-
dumpStats
default String dumpStats()
-
getComparator
BinaryComparator getComparator()
-
getBinaryKeyTypes
byte[] getBinaryKeyTypes()
-
-