Lucene.Net
3.0.3
Lucene.Net is a .NET port of the Java Lucene Indexing Library
|
Classes | |
class | AbstractEncoder |
Base class for payload encoders. More... | |
class | DelimitedPayloadTokenFilter |
Characters before the delimiter are the "token", those after are the payload. For example, if the delimiter is '|', then for the string "foo|bar", foo is the token and "bar" is a payload. Note, you can also include a org.apache.lucene.analysis.payloads.PayloadEncoder to convert the payload in an appropriate way (from characters to bytes). Note make sure your Tokenizer doesn't split on the delimiter, or this won't work More... | |
class | FloatEncoder |
Encode a character array Float as a org.apache.lucene.index.Payload. More... | |
class | IdentityEncoder |
Does nothing other than convert the char array to a byte array using the specified encoding. More... | |
class | IntegerEncoder |
Encode a character array Integer as a org.apache.lucene.index.Payload. More... | |
class | NumericPayloadTokenFilter |
Assigns a payload to a token based on the Token.Type() More... | |
interface | PayloadEncoder |
Mainly for use with the DelimitedPayloadTokenFilter, converts char buffers to Payload NOTE: this interface is subject to change More... | |
class | PayloadHelper |
Utility methods for encoding payloads. | |
class | TokenOffsetPayloadTokenFilter |
Adds the Token.StartOffset and Token.EndOffset First 4 bytes are the start More... | |
class | TypeAsPayloadTokenFilter |
Makes the Token.Type() a payload. Encodes the type using System.Text.Encoding.UTF8 as the encoding More... | |