Uses of Class
org.apache.lucene.index.Payload
-
Packages that use Payload Package Description org.apache.lucene.analysis API and code to convert text into indexable/searchable tokens.org.apache.lucene.analysis.payloads Provides various convenience classes for creating payloads on Tokens.org.apache.lucene.analysis.tokenattributes UsefulAttribute
s for text analysis.org.apache.lucene.facet.index.streaming Expert: attributes streaming definition for indexing facets -
-
Uses of Payload in org.apache.lucene.analysis
Methods in org.apache.lucene.analysis that return Payload Modifier and Type Method Description Payload
Token. getPayload()
Returns this Token's payload.Methods in org.apache.lucene.analysis with parameters of type Payload Modifier and Type Method Description void
Token. setPayload(Payload payload)
Sets this Token's payload. -
Uses of Payload in org.apache.lucene.analysis.payloads
Methods in org.apache.lucene.analysis.payloads that return Payload Modifier and Type Method Description Payload
AbstractEncoder. encode(char[] buffer)
Payload
FloatEncoder. encode(char[] buffer, int offset, int length)
Payload
IdentityEncoder. encode(char[] buffer, int offset, int length)
Payload
IntegerEncoder. encode(char[] buffer, int offset, int length)
Payload
PayloadEncoder. encode(char[] buffer)
Payload
PayloadEncoder. encode(char[] buffer, int offset, int length)
Convert a char array to aPayload
-
Uses of Payload in org.apache.lucene.analysis.tokenattributes
Methods in org.apache.lucene.analysis.tokenattributes that return Payload Modifier and Type Method Description Payload
PayloadAttribute. getPayload()
Returns this Token's payload.Payload
PayloadAttributeImpl. getPayload()
Returns this Token's payload.Methods in org.apache.lucene.analysis.tokenattributes with parameters of type Payload Modifier and Type Method Description void
PayloadAttribute. setPayload(Payload payload)
Sets this Token's payload.void
PayloadAttributeImpl. setPayload(Payload payload)
Sets this Token's payload.Constructors in org.apache.lucene.analysis.tokenattributes with parameters of type Payload Constructor Description PayloadAttributeImpl(Payload payload)
Initialize this attribute with the given payload. -
Uses of Payload in org.apache.lucene.facet.index.streaming
Fields in org.apache.lucene.facet.index.streaming declared as Payload Modifier and Type Field Description protected Payload
CategoryTokenizerBase. payload
The object used for constructing payloads.
-