Lucene.Net  3.0.3
Lucene.Net is a port of the Lucene search engine library, written in C# and targeted at .NET runtime users.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Properties Pages
Classes
Package Lucene.Net.Analysis.Payloads

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...