Interface | Description |
---|---|
org.apache.lucene.analysis.tokenattributes.TermAttribute |
Use
CharTermAttribute instead. |
org.apache.lucene.search.Searchable |
In 4.0 this interface is removed/absorbed
into IndexSearcher
|
Class | Description |
---|---|
org.apache.lucene.analysis.CharArraySet.CharArraySetIterator |
Use the standard iterator, which returns
char[] instances. |
org.apache.lucene.analysis.ISOLatin1AccentFilter |
If you build a new index, use
ASCIIFoldingFilter
which covers a superset of Latin 1.
This class is included for use with existing
indexes and will be removed in a future release (possibly Lucene 4.0). |
org.apache.lucene.analysis.standard.std31.StandardTokenizerImpl31 |
This class is only for exact backwards compatibility
|
org.apache.lucene.analysis.standard.std31.UAX29URLEmailTokenizerImpl31 |
This class is only for exact backwards compatibility
|
org.apache.lucene.analysis.standard.std34.UAX29URLEmailTokenizerImpl34 |
This class is only for exact backwards compatibility
|
org.apache.lucene.analysis.tokenattributes.TermAttributeImpl |
This class is not used anymore. The backwards layer in
AttributeFactory uses the replacement implementation.
|
org.apache.lucene.document.DateField |
If you build a new index, use
DateTools or
NumericField instead.
This class is included for use with existing
indices and will be removed in a future release (possibly Lucene 4.0). |
org.apache.lucene.document.NumberTools |
For new indexes use
NumericUtils instead, which
provides a sortable binary representation (prefix encoded) of numeric
values.
To index and efficiently query numeric values use NumericField
and NumericRangeQuery .
This class is included for use with existing
indices and will be removed in a future release (possibly Lucene 4.0). |
org.apache.lucene.index.IndexWriter.MaxFieldLength |
use
LimitTokenCountAnalyzer instead. |
org.apache.lucene.index.PayloadProcessorProvider.DirPayloadProcessor |
Use
PayloadProcessorProvider.ReaderPayloadProcessor instead. |
org.apache.lucene.search.FilterManager |
used by remote package which is deprecated as well. You should
use
CachingWrapperFilter if you wish to cache
Filter s. |
org.apache.lucene.search.MultiSearcher |
If you are using MultiSearcher over
IndexSearchers, please use MultiReader instead; this class
does not properly handle certain kinds of queries (see LUCENE-2756).
|
org.apache.lucene.search.ParallelMultiSearcher |
Please pass an ExecutorService to
IndexSearcher , instead. |
org.apache.lucene.search.Searcher |
In 4.0 this abstract class is removed/absorbed
into IndexSearcher
|
org.apache.lucene.search.SimilarityDelegator |
this class will be removed in 4.0. Please
subclass
Similarity or DefaultSimilarity instead. |
org.apache.lucene.util.Parameter |
Use Java 5 enum, will be removed in a later Lucene 3.x release.
|
org.apache.lucene.util.ScorerDocQueue |
Enum Constant | Description |
---|---|
org.apache.lucene.util.Version.LUCENE_20 |
(3.1) Use latest
|
org.apache.lucene.util.Version.LUCENE_21 |
(3.1) Use latest
|
org.apache.lucene.util.Version.LUCENE_22 |
(3.1) Use latest
|
org.apache.lucene.util.Version.LUCENE_23 |
(3.1) Use latest
|
org.apache.lucene.util.Version.LUCENE_24 |
(3.1) Use latest
|
org.apache.lucene.util.Version.LUCENE_29 |
(3.1) Use latest
|
org.apache.lucene.util.Version.LUCENE_CURRENT |
Use an actual version instead.
|
Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.