Package | Description |
---|---|
org.apache.lucene.document |
The logical representation of a
Document for indexing and searching. |
Modifier and Type | Field and Description |
---|---|
static FieldType |
StoredField.TYPE
Type for a stored-only field.
|
static FieldType |
LatLonPoint.TYPE
Type for an indexed LatLonPoint
|
static FieldType |
NumericDocValuesField.TYPE
Type for numeric DocValues.
|
static FieldType |
LatLonDocValuesField.TYPE
Type for a LatLonDocValuesField
|
static FieldType |
SortedNumericDocValuesField.TYPE
Type for sorted numeric DocValues.
|
static FieldType |
SortedSetDocValuesField.TYPE
Type for sorted bytes DocValues
|
static FieldType |
SortedDocValuesField.TYPE
Type for sorted bytes DocValues
|
static FieldType |
BinaryDocValuesField.TYPE
Type for straight bytes DocValues.
|
static FieldType |
StringField.TYPE_NOT_STORED
Indexed, not tokenized, omits norms, indexes
DOCS_ONLY, not stored.
|
static FieldType |
TextField.TYPE_NOT_STORED
Indexed, tokenized, not stored.
|
static FieldType |
StringField.TYPE_STORED
Indexed, not tokenized, omits norms, indexes
DOCS_ONLY, stored
|
static FieldType |
TextField.TYPE_STORED
Indexed, tokenized, stored.
|
Constructor and Description |
---|
StoredField(String name,
BytesRef bytes,
FieldType type)
Expert: allows you to customize the
FieldType . |
StoredField(String name,
CharSequence value,
FieldType type)
Expert: allows you to customize the
FieldType . |
StoredField(String name,
FieldType type)
Expert: allows you to customize the
FieldType . |
StoredField(String name,
String value,
FieldType type)
Expert: allows you to customize the
FieldType . |
Copyright © 2000-2019 Apache Software Foundation. All Rights Reserved.