Package | Description |
---|---|
org.apache.lucene.index |
Code to maintain and access indices.
|
Modifier and Type | Method and Description |
---|---|
void |
IndexReader.deleteDocument(int docNum)
Deletes the document numbered
docNum . |
void |
IndexModifier.deleteDocument(int docNum)
Deprecated.
Deletes the document numbered
docNum . |
int |
IndexReader.deleteDocuments(Term term)
Deletes all documents that have a given
term indexed. |
int |
IndexModifier.deleteDocuments(Term term)
Deprecated.
Deletes all documents containing
term . |
void |
IndexReader.setNorm(int doc,
java.lang.String field,
byte value)
Expert: Resets the normalization factor for the named field of the named
document.
|
void |
IndexReader.setNorm(int doc,
java.lang.String field,
float value)
Expert: Resets the normalization factor for the named field of the named
document.
|
void |
IndexReader.undeleteAll()
Undeletes all documents currently marked as deleted in this index.
|
Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.