Uses of Class
org.apache.lucene.index.DocValuesType
-
Packages that use DocValuesType Package Description org.apache.lucene.backward_codecs.lucene60 Lucene 6.0 file format.org.apache.lucene.codecs.lucene90 Lucene 9.0 file format.org.apache.lucene.codecs.simpletext Simpletext Codec: writes human readable postings.org.apache.lucene.document The logical representation of aDocumentfor 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. -
-
Uses of DocValuesType in org.apache.lucene.backward_codecs.lucene60
Methods in org.apache.lucene.backward_codecs.lucene60 that return DocValuesType Modifier and Type Method Description private static DocValuesTypeLucene60FieldInfosFormat. getDocValuesType(IndexInput input, byte b)Methods in org.apache.lucene.backward_codecs.lucene60 with parameters of type DocValuesType Modifier and Type Method Description private static byteLucene60FieldInfosFormat. docValuesByte(DocValuesType type) -
Uses of DocValuesType in org.apache.lucene.codecs.lucene90
Methods in org.apache.lucene.codecs.lucene90 that return DocValuesType Modifier and Type Method Description private static DocValuesTypeLucene90FieldInfosFormat. getDocValuesType(IndexInput input, byte b)Methods in org.apache.lucene.codecs.lucene90 with parameters of type DocValuesType Modifier and Type Method Description private static byteLucene90FieldInfosFormat. docValuesByte(DocValuesType type) -
Uses of DocValuesType in org.apache.lucene.codecs.simpletext
Methods in org.apache.lucene.codecs.simpletext that return DocValuesType Modifier and Type Method Description DocValuesTypeSimpleTextFieldInfosFormat. docValuesType(java.lang.String dvType)Methods in org.apache.lucene.codecs.simpletext with parameters of type DocValuesType Modifier and Type Method Description private static java.lang.StringSimpleTextFieldInfosFormat. getDocValuesType(DocValuesType type)private voidSimpleTextDocValuesWriter. writeFieldEntry(FieldInfo field, DocValuesType type)write the header for this field -
Uses of DocValuesType in org.apache.lucene.document
Fields in org.apache.lucene.document declared as DocValuesType Modifier and Type Field Description private DocValuesTypeFieldType. docValuesTypeMethods in org.apache.lucene.document that return DocValuesType Modifier and Type Method Description DocValuesTypeFieldType. docValuesType()DocValuesDocValuesType: how the field's value will be indexed into docValues.Methods in org.apache.lucene.document with parameters of type DocValuesType Modifier and Type Method Description voidFieldType. setDocValuesType(DocValuesType type)Sets the field's DocValuesType -
Uses of DocValuesType in org.apache.lucene.index
Fields in org.apache.lucene.index declared as DocValuesType Modifier and Type Field Description private DocValuesTypeFieldInfo. docValuesTypeprivate DocValuesTypeIndexingChain.FieldSchema. docValuesType(package private) DocValuesTypeDocValuesFieldUpdates. type(package private) DocValuesTypeDocValuesUpdate. typeFields in org.apache.lucene.index with type parameters of type DocValuesType Modifier and Type Field Description private java.util.Map<java.lang.String,DocValuesType>FieldInfos.FieldNumbers. docValuesTypeMethods in org.apache.lucene.index that return DocValuesType Modifier and Type Method Description DocValuesTypeIndexableFieldType. docValuesType()DocValuesDocValuesType: how the field's value will be indexed into docValues.DocValuesTypeFieldInfo. getDocValuesType()ReturnsDocValuesTypeof the docValues; this isDocValuesType.NONEif the field has no docvalues.static DocValuesTypeDocValuesType. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DocValuesType[]DocValuesType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.lucene.index with parameters of type DocValuesType Modifier and Type Method Description private static voidDocValues. checkField(LeafReader in, java.lang.String field, DocValuesType... expected)(package private) FieldInfoFieldInfos.FieldNumbers. constructFieldInfo(java.lang.String fieldName, DocValuesType dvType, int newFieldNumber)Construct a new FieldInfo based on the options in global field numbers.private FieldInfoCodecReader. getDVField(java.lang.String field, DocValuesType type)private voidIndexingChain. indexDocValue(int docID, IndexingChain.PerField fp, DocValuesType dvType, IndexableField field)Called from processDocument to index one field's doc value(package private) voidIndexingChain.FieldSchema. setDocValues(DocValuesType newDocValuesType)voidFieldInfo. setDocValuesType(DocValuesType type)Record that this field is indexed with docvalues, with the specified typeprivate voidIndexingChain. validateIndexSortDVType(Sort indexSort, java.lang.String fieldToValidate, DocValuesType dvType)(package private) voidFieldInfos.FieldNumbers. verifyOrCreateDvOnlyField(java.lang.String fieldName, DocValuesType dvType, boolean fieldMustExist)This function is called fromIndexWriterto verify if doc values of the field can be updated.(package private) static voidFieldInfo. verifySameDocValuesType(java.lang.String fieldName, DocValuesType docValuesType1, DocValuesType docValuesType2, boolean strictlyConsistent)Verify that the provided docValues type are the sameConstructors in org.apache.lucene.index with parameters of type DocValuesType Constructor Description DocValuesFieldUpdates(int maxDoc, long delGen, java.lang.String field, DocValuesType type)DocValuesUpdate(DocValuesType type, Term term, java.lang.String field, int docIDUpTo, boolean hasValue)Constructor.FieldInfo(java.lang.String name, int number, boolean storeTermVector, boolean omitNorms, boolean storePayloads, IndexOptions indexOptions, DocValuesType docValues, long dvGen, java.util.Map<java.lang.String,java.lang.String> attributes, int pointDimensionCount, int pointIndexDimensionCount, int pointNumBytes, int vectorDimension, VectorSimilarityFunction vectorSimilarityFunction, boolean softDeletesField)Sole constructor.SingleValueDocValuesFieldUpdates(int maxDoc, long delGen, java.lang.String field, DocValuesType type) -
Uses of DocValuesType in org.apache.lucene.index.memory
Methods in org.apache.lucene.index.memory with parameters of type DocValuesType Modifier and Type Method Description private MemoryIndex.InfoMemoryIndex.MemoryIndexReader. getInfoForExpectedDocValuesType(java.lang.String fieldName, DocValuesType expectedType)private SortedDocValuesMemoryIndex.MemoryIndexReader. getSortedDocValues(java.lang.String field, DocValuesType docValuesType)private voidMemoryIndex. storeDocValues(MemoryIndex.Info info, DocValuesType docValuesType, java.lang.Object docValuesValue)
-