Uses of Interface
org.apache.lucene.index.IndexableFieldType
-
Packages that use IndexableFieldType Package Description org.apache.lucene.document The logical representation of aDocument
for indexing and searching.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.index.memory High-performance single-document main memory Apache Lucene fulltext search index.org.apache.lucene.misc.document Misc extensions of the Document/Field API. -
-
Uses of IndexableFieldType in org.apache.lucene.document
Classes in org.apache.lucene.document that implement IndexableFieldType Modifier and Type Class Description class
FieldType
Describes the properties of a field.Fields in org.apache.lucene.document declared as IndexableFieldType Modifier and Type Field Description protected IndexableFieldType
Field. type
Field's typeMethods in org.apache.lucene.document that return IndexableFieldType Modifier and Type Method Description IndexableFieldType
Field. fieldType()
Returns theFieldType
for this field.IndexableFieldType
ShapeDocValuesField. fieldType()
Gets theIndexableFieldType
for this ShapeDocValue fieldConstructors in org.apache.lucene.document with parameters of type IndexableFieldType Constructor Description BinaryPoint(java.lang.String name, byte[] packedPoint, IndexableFieldType type)
Expert APIField(java.lang.String name, byte[] value, int offset, int length, IndexableFieldType type)
Create field with binary value.Field(java.lang.String name, byte[] value, IndexableFieldType type)
Create field with binary value.Field(java.lang.String name, java.io.Reader reader, IndexableFieldType type)
Create field with Reader value.Field(java.lang.String name, java.lang.CharSequence value, IndexableFieldType type)
Create field with String value.Field(java.lang.String name, TokenStream tokenStream, IndexableFieldType type)
Create field with TokenStream value.Field(java.lang.String name, IndexableFieldType type)
Expert: creates a field with no initial value.Field(java.lang.String name, BytesRef bytes, IndexableFieldType type)
Create field with binary value.FieldType(IndexableFieldType ref)
Create a new mutable FieldType with all of the properties fromref
-
Uses of IndexableFieldType in org.apache.lucene.index
Methods in org.apache.lucene.index that return IndexableFieldType Modifier and Type Method Description IndexableFieldType
IndexableField. fieldType()
IndexableFieldType
describing the properties of this field.Methods in org.apache.lucene.index with parameters of type IndexableFieldType Modifier and Type Method Description private static void
IndexingChain. updateDocFieldSchema(java.lang.String fieldName, IndexingChain.FieldSchema schema, IndexableFieldType fieldType)
private static void
IndexingChain. verifyUnIndexedFieldType(java.lang.String name, IndexableFieldType ft)
-
Uses of IndexableFieldType in org.apache.lucene.index.memory
Methods in org.apache.lucene.index.memory with parameters of type IndexableFieldType Modifier and Type Method Description private FieldInfo
MemoryIndex. createFieldInfo(java.lang.String fieldName, int ord, IndexableFieldType fieldType)
private MemoryIndex.Info
MemoryIndex. getInfo(java.lang.String fieldName, IndexableFieldType fieldType)
-
Uses of IndexableFieldType in org.apache.lucene.misc.document
Methods in org.apache.lucene.misc.document that return IndexableFieldType Modifier and Type Method Description IndexableFieldType
LazyDocument.LazyField. fieldType()
-