|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Attribute | |
|---|---|
| org.apache.lucene.analysis | API and code to convert text into indexable/searchable tokens. |
| org.apache.lucene.analysis.tokenattributes | |
| org.apache.lucene.util | Some utility classes. |
| Uses of Attribute in org.apache.lucene.analysis |
|---|
| Classes in org.apache.lucene.analysis that implement Attribute | |
|---|---|
class |
Token
A Token is an occurrence of a term from the text of a field. |
| Method parameters in org.apache.lucene.analysis with type arguments of type Attribute | |
|---|---|
AttributeImpl |
Token.TokenAttributeFactory.createAttributeInstance(Class<? extends Attribute> attClass)
|
| Uses of Attribute in org.apache.lucene.analysis.tokenattributes |
|---|
| Subinterfaces of Attribute in org.apache.lucene.analysis.tokenattributes | |
|---|---|
interface |
FlagsAttribute
This attribute can be used to pass different flags down the Tokenizer chain,
eg from one TokenFilter to another one. |
interface |
OffsetAttribute
The start and end character offset of a Token. |
interface |
PayloadAttribute
The payload of a Token. |
interface |
PositionIncrementAttribute
The positionIncrement determines the position of this token relative to the previous Token in a TokenStream, used in phrase searching. |
interface |
TermAttribute
The term text of a Token. |
interface |
TypeAttribute
A Token's lexical type. |
| Classes in org.apache.lucene.analysis.tokenattributes that implement Attribute | |
|---|---|
class |
FlagsAttributeImpl
This attribute can be used to pass different flags down the tokenizer chain, eg from one TokenFilter to another one. |
class |
OffsetAttributeImpl
The start and end character offset of a Token. |
class |
PayloadAttributeImpl
The payload of a Token. |
class |
PositionIncrementAttributeImpl
The positionIncrement determines the position of this token relative to the previous Token in a TokenStream, used in phrase
searching. |
class |
TermAttributeImpl
The term text of a Token. |
class |
TypeAttributeImpl
A Token's lexical type. |
| Uses of Attribute in org.apache.lucene.util |
|---|
| Classes in org.apache.lucene.util that implement Attribute | |
|---|---|
class |
AttributeImpl
Base class for Attributes that can be added to a AttributeSource. |
| Methods in org.apache.lucene.util with type parameters of type Attribute | ||
|---|---|---|
|
AttributeSource.addAttribute(Class<A> attClass)
The caller must pass in a Class<? extends Attribute> value. |
|
|
AttributeSource.getAttribute(Class<A> attClass)
The caller must pass in a Class<? extends Attribute> value. |
|
| Methods in org.apache.lucene.util that return types with arguments of type Attribute | |
|---|---|
Iterator<Class<? extends Attribute>> |
AttributeSource.getAttributeClassesIterator()
Returns a new iterator that iterates the attribute classes in the same order they were added in. |
| Method parameters in org.apache.lucene.util with type arguments of type Attribute | |
|---|---|
abstract AttributeImpl |
AttributeSource.AttributeFactory.createAttributeInstance(Class<? extends Attribute> attClass)
returns an AttributeImpl for the supplied Attribute interface class. |
boolean |
AttributeSource.hasAttribute(Class<? extends Attribute> attClass)
The caller must pass in a Class<? extends Attribute> value. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||