Package | Description |
---|---|
org.apache.lucene.document |
Misc extensions of the Document/Field API.
|
org.apache.lucene.facet |
faceted search
|
org.apache.lucene.facet.sortedset |
Provides faceting capabilities over facets that were indexed with
SortedSetDocValuesFacetField . |
org.apache.lucene.facet.taxonomy |
Taxonomy of Categories
|
org.apache.lucene.search.vectorhighlight |
This is an another highlighter implementation.
|
Modifier and Type | Class and Description |
---|---|
class |
BinaryDocValuesField
Field that stores a per-document
BytesRef value. |
class |
ByteDocValuesField
Deprecated.
use
NumericDocValuesField instead. |
class |
DerefBytesDocValuesField
Deprecated.
Use
BinaryDocValuesField instead. |
class |
DoubleDocValuesField
Syntactic sugar for encoding doubles as NumericDocValues
via
Double.doubleToRawLongBits(double) . |
class |
DoubleField
Field that indexes
double values
for efficient range filtering and sorting. |
class |
FloatDocValuesField
Syntactic sugar for encoding floats as NumericDocValues
via
Float.floatToRawIntBits(float) . |
class |
FloatField
Field that indexes
float values
for efficient range filtering and sorting. |
class |
IntDocValuesField
Deprecated.
use
NumericDocValuesField instead. |
class |
IntField
Field that indexes
int values
for efficient range filtering and sorting. |
class |
LongDocValuesField
Deprecated.
use
NumericDocValuesField instead. |
class |
LongField
Field that indexes
long values
for efficient range filtering and sorting. |
class |
NumericDocValuesField
Field that stores a per-document
long value for scoring,
sorting or value retrieval. |
class |
PackedLongDocValuesField
Deprecated.
use
NumericDocValuesField instead. |
class |
ShortDocValuesField
Deprecated.
use
NumericDocValuesField instead. |
class |
SortedBytesDocValuesField
Deprecated.
Use
SortedDocValuesField instead. |
class |
SortedDocValuesField
Field that stores
a per-document
BytesRef value, indexed for
sorting. |
class |
SortedSetDocValuesField
Field that stores
a set of per-document
BytesRef values, indexed for
faceting,grouping,joining. |
class |
StoredField
A field whose value is stored so that
IndexSearcher.doc(int) and IndexReader.document(int, org.apache.lucene.index.StoredFieldVisitor) will
return the field and its value. |
class |
StraightBytesDocValuesField
Deprecated.
Use
BinaryDocValuesField instead. |
class |
StringField
A field that is indexed but not tokenized: the entire
String value is indexed as a single token.
|
class |
TextField
A field that is indexed and tokenized, without term
vectors.
|
Modifier and Type | Class and Description |
---|---|
class |
FacetField
Add an instance of this to your
Document for every facet label. |
Modifier and Type | Class and Description |
---|---|
class |
SortedSetDocValuesFacetField
Add an instance of this to your Document for every facet
label to be indexed via SortedSetDocValues.
|
Modifier and Type | Class and Description |
---|---|
class |
AssociationFacetField
Add an instance of this to your
Document to add
a facet label associated with an arbitrary byte[]. |
class |
FloatAssociationFacetField
Add an instance of this to your
Document to add
a facet label associated with a float. |
class |
IntAssociationFacetField
Add an instance of this to your
Document to add
a facet label associated with an int. |
Modifier and Type | Method and Description |
---|---|
protected Field[] |
BaseFragmentsBuilder.getFields(IndexReader reader,
int docId,
String fieldName) |
Modifier and Type | Method and Description |
---|---|
protected List<FieldFragList.WeightedFragInfo> |
BaseFragmentsBuilder.discreteMultiValueHighlighting(List<FieldFragList.WeightedFragInfo> fragInfos,
Field[] fields) |
protected String |
BaseFragmentsBuilder.getFragmentSource(StringBuilder buffer,
int[] index,
Field[] values,
int startOffset,
int endOffset) |
protected String |
BaseFragmentsBuilder.getFragmentSourceMSO(StringBuilder buffer,
int[] index,
Field[] values,
int startOffset,
int endOffset,
int[] modifiedStartOffset) |
protected String |
BaseFragmentsBuilder.makeFragment(StringBuilder buffer,
int[] index,
Field[] values,
FieldFragList.WeightedFragInfo fragInfo,
String[] preTags,
String[] postTags,
Encoder encoder) |
Copyright © 2000-2015 The Apache Software Foundation. All Rights Reserved.