Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.document |
The logical representation of a
Document for indexing and searching. |
org.apache.lucene.index |
Code to maintain and access indices.
|
Modifier and Type | Method and Description |
---|---|
IndexableFieldType |
StoredFieldsWriter.MergeVisitor.fieldType() |
Modifier and Type | Class and Description |
---|---|
class |
FieldType
Describes the properties of a field.
|
Modifier and Type | Field and Description |
---|---|
protected IndexableFieldType |
Field.type
Field's type
|
Modifier and Type | Method and Description |
---|---|
IndexableFieldType |
Field.fieldType()
Returns the
FieldType for this field. |
Constructor and Description |
---|
BinaryPoint(String name,
byte[] packedPoint,
IndexableFieldType type)
Expert API
|
Field(String name,
byte[] value,
IndexableFieldType type)
Create field with binary value.
|
Field(String name,
byte[] value,
int offset,
int length,
IndexableFieldType type)
Create field with binary value.
|
Field(String name,
BytesRef bytes,
IndexableFieldType type)
Create field with binary value.
|
Field(String name,
IndexableFieldType type)
Expert: creates a field with no initial value.
|
Field(String name,
Reader reader,
IndexableFieldType type)
Create field with Reader value.
|
Field(String name,
String value,
IndexableFieldType type)
Create field with String value.
|
Field(String name,
TokenStream tokenStream,
IndexableFieldType type)
Create field with TokenStream value.
|
FieldType(IndexableFieldType ref)
Create a new mutable FieldType with all of the properties from
ref |
Modifier and Type | Method and Description |
---|---|
IndexableFieldType |
IndexableField.fieldType()
IndexableFieldType describing the properties
of this field. |
Copyright © 2000-2017 Apache Software Foundation. All Rights Reserved.