Package org.terrier.structures
Class BaseCompressingMetaIndex.InputStream
- java.lang.Object
-
- org.terrier.structures.BaseCompressingMetaIndex.InputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable,java.util.Iterator<java.lang.String[]>
- Direct Known Subclasses:
CompressingMetaIndex.InputStream
- Enclosing class:
- BaseCompressingMetaIndex
public abstract static class BaseCompressingMetaIndex.InputStream extends java.lang.Object implements java.util.Iterator<java.lang.String[]>, java.io.CloseableAn iterator for reading a MetaIndex as a stream
-
-
Field Summary
Fields Modifier and Type Field Description protected longfileLengthprotected int[]keyByteOffsetprotected intkeyCountprotected longlastOffsetprotected intrecordLengthprotected int[]valueByteLengths
-
Constructor Summary
Constructors Constructor Description InputStream(IndexOnDisk _index, java.lang.String structureName)Constructs an instance of the class withInputStream(IndexOnDisk _index, java.lang.String _structureName, int _startingId, int _endId)Constructs an instance of the class with
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()intgetIndex()Return the position that we are at (entry number)booleanhasNext()java.lang.String[]next()voidremove()
-
-
-
Constructor Detail
-
InputStream
public InputStream(IndexOnDisk _index, java.lang.String _structureName, int _startingId, int _endId) throws java.io.IOException
Constructs an instance of the class with- Parameters:
_index-_structureName-_startingId-_endId-- Throws:
java.io.IOException
-
InputStream
public InputStream(IndexOnDisk _index, java.lang.String structureName) throws java.io.IOException
Constructs an instance of the class with- Parameters:
_index-structureName-- Throws:
java.io.IOException
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNextin interfacejava.util.Iterator<java.lang.String[]>
-
getIndex
public int getIndex()
Return the position that we are at (entry number)
-
next
public java.lang.String[] next()
- Specified by:
nextin interfacejava.util.Iterator<java.lang.String[]>
-
remove
public void remove()
- Specified by:
removein interfacejava.util.Iterator<java.lang.String[]>
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Throws:
java.io.IOException
-
-