
org.apache.lucene.index.LeafMetaData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.lucene
Show all versions of org.apache.servicemix.bundles.lucene
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.lucene.index;
import org.apache.lucene.document.Field;
import org.apache.lucene.search.Query;
import org.apache.lucene.search.Sort;
import org.apache.lucene.util.Version;
/**
* Provides read-only metadata about a leaf.
*
* @param createdVersionMajor the Lucene version that created this index. This can be used to
* implement backward compatibility on top of the codec API. A return value of {@code 6}
* indicates that the created version is unknown.
* @param minVersion the minimum Lucene version that contributed documents to this index, or {@code
* null} if this information is not available.
* @param sort the order in which documents from this index are sorted, or {@code null} if documents
* are in no particular order.
* @param hasBlocks Returns true
iff this index contains blocks created with {@link
* IndexWriter#addDocument(Iterable)} or it's corresponding update methods with at least 2 or
* more documents per call. Note: This property was not recorded before {@link
* Version#LUCENE_9_9_0} this method will return false for all leaves written before {@link
* Version#LUCENE_9_9_0}
* @see IndexWriter#updateDocuments(Term, Iterable)
* @see IndexWriter#updateDocuments(Query, Iterable)
* @see IndexWriter#softUpdateDocuments(Term, Iterable, Field...)
* @see IndexWriter#addDocuments(Iterable)
* @lucene.experimental
*/
public record LeafMetaData(
int createdVersionMajor, Version minVersion, Sort sort, boolean hasBlocks) {
/** Expert: Sole constructor. Public for use by custom {@link LeafReader} impls. */
public LeafMetaData {
if (createdVersionMajor > Version.LATEST.major) {
throw new IllegalArgumentException(
"createdVersionMajor is in the future: " + createdVersionMajor);
}
if (createdVersionMajor < 6) {
throw new IllegalArgumentException(
"createdVersionMajor must be >= 6, got: " + createdVersionMajor);
}
if (createdVersionMajor >= 7 && minVersion == null) {
throw new IllegalArgumentException("minVersion must be set when createdVersionMajor is >= 7");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy