Uses of Interface
org.apache.lucene.index.IndexableField
-
Packages that use IndexableField Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene90.compressing Lucene 9.0 compressing format.org.apache.lucene.document The logical representation of aDocument
for indexing and searching.org.apache.lucene.index Code to maintain and access indices. -
-
Uses of IndexableField in org.apache.lucene.codecs
Classes in org.apache.lucene.codecs that implement IndexableField Modifier and Type Class Description protected class
StoredFieldsWriter.MergeVisitor
A visitor that adds every field it sees.Methods in org.apache.lucene.codecs with parameters of type IndexableField Modifier and Type Method Description abstract void
StoredFieldsWriter. writeField(FieldInfo info, IndexableField field)
Writes a single stored field. -
Uses of IndexableField in org.apache.lucene.codecs.lucene90.compressing
Methods in org.apache.lucene.codecs.lucene90.compressing with parameters of type IndexableField Modifier and Type Method Description void
Lucene90CompressingStoredFieldsWriter. writeField(FieldInfo info, IndexableField field)
-
Uses of IndexableField in org.apache.lucene.document
Classes in org.apache.lucene.document that implement IndexableField Modifier and Type Class Description class
BinaryDocValuesField
Field that stores a per-documentBytesRef
value.class
BinaryPoint
An indexed binary field for fast range filters.class
DoubleDocValuesField
Syntactic sugar for encoding doubles as NumericDocValues viaDouble.doubleToRawLongBits(double)
.class
DoublePoint
An indexeddouble
field for fast range filters.class
DoubleRange
An indexed Double Range field.class
DoubleRangeDocValuesField
DocValues field for DoubleRange.class
FeatureField
Field
that can be used to store static scoring factors into documents.class
Field
Expert: directly create a field for a document.class
FloatDocValuesField
Syntactic sugar for encoding floats as NumericDocValues viaFloat.floatToRawIntBits(float)
.class
FloatPoint
An indexedfloat
field for fast range filters.class
FloatRange
An indexed Float Range field.class
FloatRangeDocValuesField
DocValues field for FloatRange.class
InetAddressPoint
An indexed 128-bitInetAddress
field.class
InetAddressRange
An indexed InetAddress Range Fieldclass
IntPoint
An indexedint
field for fast range filters.class
IntRange
An indexed Integer Range field.class
IntRangeDocValuesField
DocValues field for IntRange.class
KnnVectorField
A field that contains a single floating-point numeric vector (or none) for each document.class
LatLonDocValuesField
An per-document location field.class
LatLonPoint
An indexed location field.class
LongPoint
An indexedlong
field for fast range filters.class
LongRange
An indexed Long Range field.class
LongRangeDocValuesField
DocValues field for LongRange.class
NumericDocValuesField
Field that stores a per-documentlong
value for scoring, sorting or value retrieval.static class
ShapeField.Triangle
polygons are decomposed into tessellated triangles usingTessellator
these triangles are encoded and inserted as separate indexed POINT fieldsclass
SortedDocValuesField
Field that stores a per-documentBytesRef
value, indexed for sorting.class
SortedNumericDocValuesField
Field that stores a per-documentlong
values for scoring, sorting or value retrieval.class
SortedSetDocValuesField
Field that stores a set of per-documentBytesRef
values, indexed for faceting,grouping,joining.class
StoredField
A field whose value is stored so thatIndexSearcher.doc(int)
andIndexReader.document()
will return the field and its value.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.class
XYDocValuesField
An per-document location field.class
XYPointField
An indexed XY position field.Methods in org.apache.lucene.document that return IndexableField Modifier and Type Method Description IndexableField
Document. getField(String name)
Returns a field with the given name if any exist in this document, or null.IndexableField[]
Document. getFields(String name)
Returns an array ofIndexableField
s with the given name.Methods in org.apache.lucene.document that return types with arguments of type IndexableField Modifier and Type Method Description List<IndexableField>
Document. getFields()
Returns a List of all the fields in a document.Iterator<IndexableField>
Document. iterator()
Methods in org.apache.lucene.document with parameters of type IndexableField Modifier and Type Method Description void
Document. add(IndexableField field)
Adds a field to a document. -
Uses of IndexableField in org.apache.lucene.index
Method parameters in org.apache.lucene.index with type arguments of type IndexableField Modifier and Type Method Description long
IndexWriter. addDocument(Iterable<? extends IndexableField> doc)
Adds a document to this index.long
IndexWriter. addDocuments(Iterable<? extends Iterable<? extends IndexableField>> docs)
Atomically adds a block of documents with sequentially assigned document IDs, such that an external reader will see all or none of the documents.long
IndexWriter. softUpdateDocument(Term term, Iterable<? extends IndexableField> doc, Field... softDeletes)
Expert: Updates a document by first updating the document(s) containingterm
with the given doc-values fields and then adding the new document.long
IndexWriter. softUpdateDocuments(Term term, Iterable<? extends Iterable<? extends IndexableField>> docs, Field... softDeletes)
Expert: Atomically updates documents matching the provided term with the given doc-values fields and adds a block of documents with sequentially assigned document IDs, such that an external reader will see all or none of the documents.long
IndexWriter. updateDocument(Term term, Iterable<? extends IndexableField> doc)
Updates a document by first deleting the document(s) containingterm
and then adding the new document.long
IndexWriter. updateDocuments(Term delTerm, Iterable<? extends Iterable<? extends IndexableField>> docs)
Atomically deletes documents matching the provided delTerm and adds a block of documents with sequentially assigned document IDs, such that an external reader will see all or none of the documents.
-