Package org.apache.lucene.index
Class LeafMetaData
java.lang.Object
org.apache.lucene.index.LeafMetaData
Provides read-only metadata about a leaf.
- WARNING: This API is experimental and might change in incompatible ways in the next release.
-
Constructor Summary
ConstructorDescriptionLeafMetaData
(int createdVersionMajor, Version minVersion, Sort sort) Expert: Sole constructor. -
Method Summary
Modifier and TypeMethodDescriptionint
Get the Lucene version that created this index.Return the minimum Lucene version that contributed documents to this index, ornull
if this information is not available.getSort()
Return the order in which documents from this index are sorted, ornull
if documents are in no particular order.
-
Constructor Details
-
LeafMetaData
Expert: Sole constructor. Public for use by customLeafReader
impls.
-
-
Method Details
-
getCreatedVersionMajor
public int getCreatedVersionMajor()Get the Lucene version that created this index. This can be used to implement backward compatibility on top of the codec API. A return value of6
indicates that the created version is unknown. -
getMinVersion
Return the minimum Lucene version that contributed documents to this index, ornull
if this information is not available. -
getSort
Return the order in which documents from this index are sorted, ornull
if documents are in no particular order.
-