Class BinaryColumn

java.lang.Object
org.apache.lucene.document.column.Column
org.apache.lucene.document.column.BinaryColumn

public abstract class BinaryColumn extends Column
A Column that provides variable-size binary values via a tuple cursor. Used for BINARY, SORTED, and SORTED_SET doc values, and for stored/indexed binary or text fields. Values fed to points are passed through unchanged, so callers are responsible for producing sort-encoded bytes of the correct total length.

Numeric doc values (NUMERIC / SORTED_NUMERIC) and 1-D numeric points (int / long / float / double) are fed by LongColumn instead.

WARNING: This API is experimental and might change in incompatible ways in the next release.