public class DocumentVectorMiniInvertedIndex extends Object implements DocumentVector
| Modifier and Type | Method and Description |
|---|---|
int[] |
decompressDocument()
Decompresses the document vector into a flat array representation
|
int[][] |
decompressPositions(int[] terms)
Decompresses/constructs positions.
|
boolean |
equals(Object o) |
int |
getDocumentLength() |
static DocumentVectorMiniInvertedIndex |
newInstance(int[] data,
List<TermPositions> positions,
int documentLength)
Constructs an indexed document vector given the input term id vector and the term positions
|
void |
readFields(DataInput input) |
static DocumentVectorMiniInvertedIndex |
readInstance(DataInput input)
Reads and returns an instance of this class from input.
|
int[] |
transformTerms(int[] terms)
Transforms query terms
|
void |
write(DataOutput output) |
public int[] decompressDocument()
throws IOException
DocumentVectordecompressDocument in interface DocumentVectorIOExceptionpublic int[][] decompressPositions(int[] terms)
throws IOException
DocumentVectordecompressPositions in interface DocumentVectorterms - Query termsIOExceptionpublic int getDocumentLength()
getDocumentLength in interface DocumentVectorpublic static DocumentVectorMiniInvertedIndex newInstance(int[] data, List<TermPositions> positions, int documentLength) throws IOException
data - Array of term idspositions - List of TermPosition objects, one for each term idIOExceptionpublic void readFields(DataInput input) throws IOException
readFields in interface WritableIOExceptionpublic static DocumentVectorMiniInvertedIndex readInstance(DataInput input) throws IOException
input - DataInputIOExceptionpublic int[] transformTerms(int[] terms)
DocumentVectortransformTerms in interface DocumentVectorterms - Query termspublic void write(DataOutput output) throws IOException
write in interface WritableIOException