Package | Description |
---|---|
org.apache.lucene.index |
Code to maintain and access indices.
|
Modifier and Type | Method and Description |
---|---|
void |
IndexReader.deleteDocument(int docNum)
Deprecated.
Write support will be removed in Lucene 4.0.
Use
IndexWriter.deleteDocuments(Term) instead |
int |
IndexReader.deleteDocuments(Term term)
Deprecated.
Write support will be removed in Lucene 4.0.
Use
IndexWriter.deleteDocuments(Term) instead |
void |
IndexReader.setNorm(int doc,
String field,
byte value)
Deprecated.
Write support will be removed in Lucene 4.0.
There will be no replacement for this method.
|
void |
IndexReader.setNorm(int doc,
String field,
float value)
Deprecated.
Write support will be removed in Lucene 4.0.
There will be no replacement for this method.
|
void |
IndexReader.undeleteAll()
Deprecated.
Write support will be removed in Lucene 4.0.
There will be no replacement for this method.
|