Package com.arcadedb.index
Class TempIndexCursor
- java.lang.Object
-
- com.arcadedb.index.TempIndexCursor
-
- All Implemented Interfaces:
Cursor
,IndexCursor
,Iterable<Identifiable>
,Iterator<Identifiable>
public class TempIndexCursor extends Object implements IndexCursor
-
-
Constructor Summary
Constructors Constructor Description TempIndexCursor(Collection<IndexCursorEntry> list)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
estimateSize()
byte[]
getBinaryKeyTypes()
BinaryComparator
getComparator()
Object[]
getKeys()
Identifiable
getRecord()
boolean
hasNext()
Iterator<Identifiable>
iterator()
Identifiable
next()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.arcadedb.index.IndexCursor
close, dumpStats
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Methods inherited from interface java.util.Iterator
forEachRemaining, remove
-
-
-
-
Constructor Detail
-
TempIndexCursor
public TempIndexCursor(Collection<IndexCursorEntry> list)
-
-
Method Detail
-
getKeys
public Object[] getKeys()
- Specified by:
getKeys
in interfaceIndexCursor
-
getRecord
public Identifiable getRecord()
- Specified by:
getRecord
in interfaceIndexCursor
-
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interfaceIterator<Identifiable>
-
next
public Identifiable next()
- Specified by:
next
in interfaceIterator<Identifiable>
-
getComparator
public BinaryComparator getComparator()
- Specified by:
getComparator
in interfaceIndexCursor
-
getBinaryKeyTypes
public byte[] getBinaryKeyTypes()
- Specified by:
getBinaryKeyTypes
in interfaceIndexCursor
-
estimateSize
public long estimateSize()
- Specified by:
estimateSize
in interfaceCursor
-
iterator
public Iterator<Identifiable> iterator()
- Specified by:
iterator
in interfaceIterable<Identifiable>
-
-