Package | Description |
---|---|
org.apache.lucene.analysis |
Text analysis.
|
org.apache.lucene.analysis.icu.tokenattributes |
Additional ICU-specific Attributes for text analysis.
|
org.apache.lucene.analysis.ja.tokenattributes |
Additional Kuromoji-specific Attributes for text analysis.
|
org.apache.lucene.analysis.morfologik |
This package provides dictionary-driven lemmatization ("accurate stemming")
filter and analyzer for the Polish Language, driven by the
Morfologik library developed
by Dawid Weiss and Marcin MiĆkowski.
|
org.apache.lucene.analysis.tokenattributes |
General-purpose attributes for text analysis.
|
org.apache.lucene.collation.tokenattributes |
Custom
AttributeImpl for indexing collation keys as index terms. |
org.apache.lucene.search |
Code to search indices.
|
org.apache.lucene.search.suggest.document |
Support for document suggestion
|
org.apache.lucene.util |
Some utility classes.
|
Modifier and Type | Class and Description |
---|---|
static class |
BaseTokenStreamTestCase.CheckClearAttributesAttributeImpl
Attribute that records if it was cleared or not.
|
class |
MockUTF16TermAttributeImpl
Extension of
CharTermAttributeImpl that encodes the term
text as UTF-16 bytes instead of as UTF-8 bytes. |
static class |
NumericTokenStream.NumericTermAttributeImpl
Implementation of
NumericTokenStream.NumericTermAttribute . |
class |
Token
Deprecated.
This class is outdated and no longer used since Lucene 2.9. Nuke it finally!
|
Modifier and Type | Method and Description |
---|---|
void |
BaseTokenStreamTestCase.CheckClearAttributesAttributeImpl.copyTo(AttributeImpl target) |
void |
NumericTokenStream.NumericTermAttributeImpl.copyTo(AttributeImpl target) |
void |
Token.copyTo(AttributeImpl target)
Deprecated.
|
Modifier and Type | Class and Description |
---|---|
class |
ScriptAttributeImpl
Implementation of
ScriptAttribute that stores the script
as an integer. |
Modifier and Type | Method and Description |
---|---|
void |
ScriptAttributeImpl.copyTo(AttributeImpl target) |
Modifier and Type | Class and Description |
---|---|
class |
BaseFormAttributeImpl
Attribute for
Token.getBaseForm() . |
class |
InflectionAttributeImpl
Attribute for Kuromoji inflection data.
|
class |
PartOfSpeechAttributeImpl
Attribute for
Token.getPartOfSpeech() . |
class |
ReadingAttributeImpl
Attribute for Kuromoji reading data
|
Modifier and Type | Method and Description |
---|---|
void |
ReadingAttributeImpl.copyTo(AttributeImpl target) |
void |
PartOfSpeechAttributeImpl.copyTo(AttributeImpl target) |
void |
BaseFormAttributeImpl.copyTo(AttributeImpl target) |
void |
InflectionAttributeImpl.copyTo(AttributeImpl target) |
Modifier and Type | Class and Description |
---|---|
class |
MorphosyntacticTagsAttributeImpl
Morphosyntactic annotations for surface forms.
|
Modifier and Type | Method and Description |
---|---|
void |
MorphosyntacticTagsAttributeImpl.copyTo(AttributeImpl target) |
Modifier and Type | Class and Description |
---|---|
class |
BytesTermAttributeImpl
Implementation class for
BytesTermAttribute . |
class |
CharTermAttributeImpl
Default implementation of
CharTermAttribute . |
class |
FlagsAttributeImpl
Default implementation of
FlagsAttribute . |
class |
KeywordAttributeImpl
Default implementation of
KeywordAttribute . |
class |
OffsetAttributeImpl
Default implementation of
OffsetAttribute . |
class |
PackedTokenAttributeImpl
Default implementation of the common attributes used by Lucene:
CharTermAttribute
TypeAttribute
PositionIncrementAttribute
PositionLengthAttribute
OffsetAttribute
|
class |
PayloadAttributeImpl
Default implementation of
PayloadAttribute . |
class |
PositionIncrementAttributeImpl
Default implementation of
PositionIncrementAttribute . |
class |
PositionLengthAttributeImpl
Default implementation of
PositionLengthAttribute . |
class |
TypeAttributeImpl
Default implementation of
TypeAttribute . |
Modifier and Type | Method and Description |
---|---|
AttributeImpl |
BytesTermAttributeImpl.clone() |
Modifier and Type | Method and Description |
---|---|
void |
PositionLengthAttributeImpl.copyTo(AttributeImpl target) |
void |
FlagsAttributeImpl.copyTo(AttributeImpl target) |
void |
PayloadAttributeImpl.copyTo(AttributeImpl target) |
void |
KeywordAttributeImpl.copyTo(AttributeImpl target) |
void |
OffsetAttributeImpl.copyTo(AttributeImpl target) |
void |
PackedTokenAttributeImpl.copyTo(AttributeImpl target) |
void |
TypeAttributeImpl.copyTo(AttributeImpl target) |
void |
BytesTermAttributeImpl.copyTo(AttributeImpl target) |
void |
PositionIncrementAttributeImpl.copyTo(AttributeImpl target) |
void |
CharTermAttributeImpl.copyTo(AttributeImpl target) |
Modifier and Type | Class and Description |
---|---|
class |
CollatedTermAttributeImpl
Extension of
CharTermAttributeImpl that encodes the term
text as a binary Unicode collation key instead of as UTF-8 bytes. |
class |
ICUCollatedTermAttributeImpl
Extension of
CharTermAttributeImpl that encodes the term
text as a binary Unicode collation key instead of as UTF-8 bytes. |
Modifier and Type | Class and Description |
---|---|
class |
BoostAttributeImpl
Implementation class for
BoostAttribute . |
static class |
FuzzyTermsEnum.LevenshteinAutomataAttributeImpl
Stores compiled automata as a list (indexed by edit distance)
|
class |
MaxNonCompetitiveBoostAttributeImpl
Implementation class for
MaxNonCompetitiveBoostAttribute . |
Modifier and Type | Method and Description |
---|---|
void |
BoostAttributeImpl.copyTo(AttributeImpl target) |
void |
MaxNonCompetitiveBoostAttributeImpl.copyTo(AttributeImpl target) |
void |
FuzzyTermsEnum.LevenshteinAutomataAttributeImpl.copyTo(AttributeImpl target) |
Modifier and Type | Class and Description |
---|---|
static class |
CompletionTokenStream.BytesRefBuilderTermAttributeImpl
Custom attribute implementation for completion token stream
|
Modifier and Type | Method and Description |
---|---|
AttributeImpl |
CompletionTokenStream.BytesRefBuilderTermAttributeImpl.clone() |
Modifier and Type | Method and Description |
---|---|
void |
CompletionTokenStream.BytesRefBuilderTermAttributeImpl.copyTo(AttributeImpl target) |
Modifier and Type | Class and Description |
---|---|
static class |
AttributeFactory.StaticImplementationAttributeFactory<A extends AttributeImpl>
Expert: AttributeFactory returning an instance of the given
clazz for the
attributes it implements. |
Modifier and Type | Method and Description |
---|---|
static <A extends AttributeImpl> |
AttributeFactory.getStaticImplementation(AttributeFactory delegate,
Class<A> clazz)
Returns an AttributeFactory returning an instance of the given
clazz for the
attributes it implements. |
Modifier and Type | Method and Description |
---|---|
AttributeImpl |
AttributeImpl.clone()
In most cases the clone is, and should be, deep in order to be able to
properly capture the state of all attributes.
|
abstract AttributeImpl |
AttributeFactory.createAttributeInstance(Class<? extends Attribute> attClass)
Returns an
AttributeImpl for the supplied Attribute interface class. |
AttributeImpl |
AttributeFactory.StaticImplementationAttributeFactory.createAttributeInstance(Class<? extends Attribute> attClass) |
Modifier and Type | Method and Description |
---|---|
Iterator<AttributeImpl> |
AttributeSource.getAttributeImplsIterator()
Returns a new iterator that iterates all unique Attribute implementations.
|
Modifier and Type | Method and Description |
---|---|
void |
AttributeSource.addAttributeImpl(AttributeImpl att)
Expert: Adds a custom AttributeImpl instance with one or more Attribute interfaces.
|
static <T> void |
TestUtil.assertAttributeReflection(AttributeImpl att,
Map<String,T> reflectedValues)
Checks some basic behaviour of an AttributeImpl
|
abstract void |
AttributeImpl.copyTo(AttributeImpl target)
Copies the values from this Attribute into the passed-in
target attribute.
|
Copyright © 2000–2015 The Apache Software Foundation. All rights reserved.