mirror of https://github.com/apache/lucene.git
fixing some deprecated/see tags in the javadoc comments
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150729 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1129d547da
commit
2c43e92e98
|
@ -574,7 +574,7 @@ public abstract class IndexReader {
|
||||||
* @return Collection of Strings indicating the names of the fields
|
* @return Collection of Strings indicating the names of the fields
|
||||||
* @throws IOException if there is a problem with accessing the index
|
* @throws IOException if there is a problem with accessing the index
|
||||||
*
|
*
|
||||||
* @deprecated Replaced by {@link #getFieldNames (IndexReader.FieldOption fldOption)}
|
* @deprecated Replaced by {@link #getFieldNames(IndexReader.FieldOption)}
|
||||||
*/
|
*/
|
||||||
public abstract Collection getFieldNames() throws IOException;
|
public abstract Collection getFieldNames() throws IOException;
|
||||||
|
|
||||||
|
@ -587,7 +587,7 @@ public abstract class IndexReader {
|
||||||
* @return Collection of Strings indicating the names of the fields
|
* @return Collection of Strings indicating the names of the fields
|
||||||
* @throws IOException if there is a problem with accessing the index
|
* @throws IOException if there is a problem with accessing the index
|
||||||
*
|
*
|
||||||
* @deprecated Replaced by {@link #getFieldNames (IndexReader.FieldOption fldOption)}
|
* @deprecated Replaced by {@link #getFieldNames(IndexReader.FieldOption)}
|
||||||
*/
|
*/
|
||||||
public abstract Collection getFieldNames(boolean indexed) throws IOException;
|
public abstract Collection getFieldNames(boolean indexed) throws IOException;
|
||||||
|
|
||||||
|
@ -597,7 +597,7 @@ public abstract class IndexReader {
|
||||||
* else only indexed fields without term vector info
|
* else only indexed fields without term vector info
|
||||||
* @return Collection of Strings indicating the names of the fields
|
* @return Collection of Strings indicating the names of the fields
|
||||||
*
|
*
|
||||||
* @deprecated Replaced by {@link #getFieldNames (IndexReader.FieldOption fldOption)}
|
* @deprecated Replaced by {@link #getFieldNames(IndexReader.FieldOption)}
|
||||||
*/
|
*/
|
||||||
public Collection getIndexedFieldNames(boolean storedTermVector){
|
public Collection getIndexedFieldNames(boolean storedTermVector){
|
||||||
if(storedTermVector){
|
if(storedTermVector){
|
||||||
|
@ -619,7 +619,7 @@ public abstract class IndexReader {
|
||||||
* @param tvSpec specifies which term vector information should be available for the fields
|
* @param tvSpec specifies which term vector information should be available for the fields
|
||||||
* @return Collection of Strings indicating the names of the fields
|
* @return Collection of Strings indicating the names of the fields
|
||||||
*
|
*
|
||||||
* @deprecated Replaced by {@link #getFieldNames (IndexReader.FieldOption fldOption)}
|
* @deprecated Replaced by {@link #getFieldNames(IndexReader.FieldOption)}
|
||||||
*/
|
*/
|
||||||
public abstract Collection getIndexedFieldNames(Field.TermVector tvSpec);
|
public abstract Collection getIndexedFieldNames(Field.TermVector tvSpec);
|
||||||
|
|
||||||
|
|
|
@ -247,7 +247,7 @@ public class MultiReader extends IndexReader {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see IndexReader#getFieldNames(IndexReader.FieldNames fldOption)
|
* @see IndexReader#getFieldNames(IndexReader.FieldOption)
|
||||||
*/
|
*/
|
||||||
public Collection getFieldNames (IndexReader.FieldOption fieldNames) {
|
public Collection getFieldNames (IndexReader.FieldOption fieldNames) {
|
||||||
// maintain a unique set of field names
|
// maintain a unique set of field names
|
||||||
|
|
Loading…
Reference in New Issue