Uses of Class
org.apache.lucene.util.AttributeSource
-
Packages that use AttributeSource Package Description org.apache.lucene.analysis API and code to convert text into indexable/searchable tokens.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.search Code to search indices.org.apache.lucene.util Some utility classes. -
-
Uses of AttributeSource in org.apache.lucene.analysis
Subclasses of AttributeSource in org.apache.lucene.analysis Modifier and Type Class Description classCachingTokenFilterThis class can be used if the token attributes of a TokenStream are intended to be consumed more than once.classNumericTokenStreamExpert: This class provides aTokenStreamfor indexing numeric values that can be used byNumericRangeQueryorNumericRangeFilter.classTokenFilterA TokenFilter is a TokenStream whose input is another TokenStream.classTokenizerA Tokenizer is a TokenStream whose input is a Reader.classTokenStreamConstructors in org.apache.lucene.analysis with parameters of type AttributeSource Constructor Description TokenStream(AttributeSource input)A TokenStream that uses the same attributes as the supplied one. -
Uses of AttributeSource in org.apache.lucene.index
Methods in org.apache.lucene.index that return AttributeSource Modifier and Type Method Description AttributeSourceDocsEnum. attributes()Returns the related attributes.AttributeSourceFilterAtomicReader.FilterDocsAndPositionsEnum. attributes()AttributeSourceFilterAtomicReader.FilterDocsEnum. attributes()AttributeSourceFilterAtomicReader.FilterTermsEnum. attributes()AttributeSourceFilteredTermsEnum. attributes()Returns the related attributes, the returnedAttributeSourceis shared with the delegateTermsEnum.AttributeSourceTermsEnum. attributes()Returns the related attributes.AttributeSourceFieldInvertState. getAttributeSource()Returns theAttributeSourcefrom theTokenStreamthat provided the indexed tokens for this field. -
Uses of AttributeSource in org.apache.lucene.search
Methods in org.apache.lucene.search with parameters of type AttributeSource Modifier and Type Method Description protected TermsEnumAutomatonQuery. getTermsEnum(Terms terms, AttributeSource atts)protected TermsEnumFuzzyQuery. getTermsEnum(Terms terms, AttributeSource atts)protected abstract TermsEnumMultiTermQuery. getTermsEnum(Terms terms, AttributeSource atts)Construct the enumeration to be used, expanding the pattern term.protected TermsEnumMultiTermQuery.RewriteMethod. getTermsEnum(MultiTermQuery query, Terms terms, AttributeSource atts)Returns theMultiTermQuerysTermsEnumprotected TermsEnumNumericRangeQuery. getTermsEnum(Terms terms, AttributeSource atts)protected TermsEnumPrefixQuery. getTermsEnum(Terms terms, AttributeSource atts)protected TermsEnumTermRangeQuery. getTermsEnum(Terms terms, AttributeSource atts)Constructors in org.apache.lucene.search with parameters of type AttributeSource Constructor Description FuzzyTermsEnum(Terms terms, AttributeSource atts, Term term, float minSimilarity, int prefixLength, boolean transpositions)Constructor for enumeration of all terms from specifiedreaderwhich share a prefix of lengthprefixLengthwithtermand which have a fuzzy similarity >minSimilarity. -
Uses of AttributeSource in org.apache.lucene.util
Methods in org.apache.lucene.util that return AttributeSource Modifier and Type Method Description AttributeSourceAttributeSource. cloneAttributes()Performs a clone of allAttributeImplinstances returned in a newAttributeSourceinstance.Methods in org.apache.lucene.util with parameters of type AttributeSource Modifier and Type Method Description voidAttributeSource. copyTo(AttributeSource target)Copies the contents of thisAttributeSourceto the given targetAttributeSource.Constructors in org.apache.lucene.util with parameters of type AttributeSource Constructor Description AttributeSource(AttributeSource input)An AttributeSource that uses the same attributes as the supplied one.
-