Interface PayloadEncoder
-
- All Known Implementing Classes:
AbstractEncoder
,FloatEncoder
,IdentityEncoder
,IntegerEncoder
public interface PayloadEncoder
Mainly for use with the DelimitedPayloadTokenFilter, converts char buffers to Payload. NOTE: This interface is subject to change
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.lucene.index.Payload
encode(char[] buffer)
org.apache.lucene.index.Payload
encode(char[] buffer, int offset, int length)
Convert a char array to aPayload
-