public abstract class DocValuesProducer extends Object implements Closeable
| Modifier | Constructor and Description |
|---|---|
protected |
DocValuesProducer()
Sole constructor.
|
| Modifier and Type | Method and Description |
|---|---|
abstract BinaryDocValues |
getBinary(FieldInfo field)
Returns
BinaryDocValues for this field. |
abstract NumericDocValues |
getNumeric(FieldInfo field)
Returns
NumericDocValues for this field. |
abstract SortedDocValues |
getSorted(FieldInfo field)
Returns
SortedDocValues for this field. |
abstract SortedSetDocValues |
getSortedSet(FieldInfo field)
Returns
SortedSetDocValues for this field. |
protected DocValuesProducer()
public abstract NumericDocValues getNumeric(FieldInfo field) throws IOException
NumericDocValues for this field.
The returned instance need not be thread-safe: it will only be
used by a single thread.IOExceptionpublic abstract BinaryDocValues getBinary(FieldInfo field) throws IOException
BinaryDocValues for this field.
The returned instance need not be thread-safe: it will only be
used by a single thread.IOExceptionpublic abstract SortedDocValues getSorted(FieldInfo field) throws IOException
SortedDocValues for this field.
The returned instance need not be thread-safe: it will only be
used by a single thread.IOExceptionpublic abstract SortedSetDocValues getSortedSet(FieldInfo field) throws IOException
SortedSetDocValues for this field.
The returned instance need not be thread-safe: it will only be
used by a single thread.IOExceptionCopyright © 2000-2013 Apache Software Foundation. All Rights Reserved.