Package | Description |
---|---|
org.apache.lucene.document |
The logical representation of a
Document for indexing and searching. |
org.apache.lucene.index.memory |
High-performance single-document main memory Apache Lucene fulltext search index.
|
Modifier and Type | Field and Description |
---|---|
private static FieldType |
FeatureField.FIELD_TYPE |
protected static FieldType |
LatLonShape.TYPE |
static FieldType |
SortedNumericDocValuesField.TYPE
Type for sorted numeric DocValues.
|
static FieldType |
SortedDocValuesField.TYPE
Type for sorted bytes DocValues
|
static FieldType |
NumericDocValuesField.TYPE
Type for numeric DocValues.
|
static FieldType |
LatLonPoint.TYPE
Type for an indexed LatLonPoint
|
static FieldType |
BinaryDocValuesField.TYPE
Type for straight bytes DocValues.
|
static FieldType |
LatLonDocValuesField.TYPE
Type for a LatLonDocValuesField
|
static FieldType |
SortedSetDocValuesField.TYPE
Type for sorted bytes DocValues
|
static FieldType |
StoredField.TYPE
Type for a stored-only field.
|
private static FieldType |
InetAddressRange.TYPE |
private static FieldType |
InetAddressPoint.TYPE |
static FieldType |
TextField.TYPE_NOT_STORED
Indexed, tokenized, not stored.
|
static FieldType |
StringField.TYPE_NOT_STORED
Indexed, not tokenized, omits norms, indexes
DOCS_ONLY, not stored.
|
static FieldType |
TextField.TYPE_STORED
Indexed, tokenized, stored.
|
static FieldType |
StringField.TYPE_STORED
Indexed, not tokenized, omits norms, indexes
DOCS_ONLY, stored
|
Modifier and Type | Method and Description |
---|---|
private static FieldType |
BinaryPoint.getType(byte[][] point) |
private static FieldType |
BigIntegerPoint.getType(int numDims) |
(package private) static FieldType |
LatLonBoundingBox.getType(int geoDimensions)
set the field type
|
private static FieldType |
HalfFloatPoint.getType(int numDims) |
private static FieldType |
DoubleRange.getType(int dimensions)
set the field type
|
private static FieldType |
LongRange.getType(int dimensions)
set the field type
|
private static FieldType |
IntPoint.getType(int numDims) |
private static FieldType |
FloatRange.getType(int dimensions)
set the field type
|
private static FieldType |
LongPoint.getType(int numDims) |
private static FieldType |
IntRange.getType(int dimensions)
set the field type
|
private static FieldType |
FloatPoint.getType(int numDims) |
private static FieldType |
DoublePoint.getType(int numDims) |
private static FieldType |
BinaryPoint.getType(int numDims,
int bytesPerDim) |
Constructor and Description |
---|
StoredField(java.lang.String name,
BytesRef bytes,
FieldType type)
Expert: allows you to customize the
FieldType . |
StoredField(java.lang.String name,
java.lang.CharSequence value,
FieldType type)
Expert: allows you to customize the
FieldType . |
StoredField(java.lang.String name,
FieldType type)
Expert: allows you to customize the
FieldType . |
StoredField(java.lang.String name,
java.lang.String value,
FieldType type)
Expert: allows you to customize the
FieldType . |
Modifier and Type | Field and Description |
---|---|
private FieldType |
MemoryIndex.defaultFieldType |