Uses of Class
org.apache.lucene.util.Version
-
Packages that use Version Package Description org.apache.lucene.analysis Text analysis.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.util Some utility classes. -
-
Uses of Version in org.apache.lucene.analysis
Fields in org.apache.lucene.analysis declared as Version Modifier and Type Field Description protected Version
AbstractAnalysisFactory. luceneMatchVersion
the luceneVersion argMethods in org.apache.lucene.analysis that return Version Modifier and Type Method Description Version
AbstractAnalysisFactory. getLuceneMatchVersion()
-
Uses of Version in org.apache.lucene.index
Methods in org.apache.lucene.index that return Version Modifier and Type Method Description Version
SegmentInfos. getCommitLuceneVersion()
Returns which LuceneVersion
wrote this commit, or null if the version this index was written with did not directly record the version.Version
SegmentInfos. getMinSegmentLuceneVersion()
Returns the version of the oldest segment, or null if there are no segments.Version
LeafMetaData. getMinVersion()
Return the minimum Lucene version that contributed documents to this index, ornull
if this information is not available.Version
SegmentInfo. getMinVersion()
Return the minimum Lucene version that contributed documents to this segment, ornull
if it is unknown.Version
SegmentInfo. getVersion()
Returns the version of the code which wrote the segment.Constructors in org.apache.lucene.index with parameters of type Version Constructor Description LeafMetaData(int createdVersionMajor, Version minVersion, Sort sort, boolean hasBlocks)
Expert: Sole constructor.SegmentInfo(Directory dir, Version version, Version minVersion, String name, int maxDoc, boolean isCompoundFile, boolean hasBlocks, Codec codec, Map<String,String> diagnostics, byte[] id, Map<String,String> attributes, Sort indexSort)
Construct a new complete SegmentInfo instance from input. -
Uses of Version in org.apache.lucene.util
Fields in org.apache.lucene.util declared as Version Modifier and Type Field Description static Version
Version. LATEST
WARNING: if you use this setting, and then upgrade to a newer release of Lucene, sizable changes may happen.static Version
Version. LUCENE_8_0_0
Deprecated.(9.0.0) Use lateststatic Version
Version. LUCENE_8_1_0
Deprecated.Use lateststatic Version
Version. LUCENE_8_1_1
Deprecated.Use lateststatic Version
Version. LUCENE_8_10_0
Deprecated.Use lateststatic Version
Version. LUCENE_8_10_1
Deprecated.Use lateststatic Version
Version. LUCENE_8_11_0
Deprecated.(8.11.1) Use lateststatic Version
Version. LUCENE_8_11_1
Deprecated.Use lateststatic Version
Version. LUCENE_8_11_2
Deprecated.Use lateststatic Version
Version. LUCENE_8_12_0
Deprecated.Use lateststatic Version
Version. LUCENE_8_2_0
Deprecated.Use lateststatic Version
Version. LUCENE_8_3_0
Deprecated.Use lateststatic Version
Version. LUCENE_8_3_1
Deprecated.Use lateststatic Version
Version. LUCENE_8_4_0
Deprecated.Use lateststatic Version
Version. LUCENE_8_4_1
Deprecated.Use lateststatic Version
Version. LUCENE_8_5_0
Deprecated.Use lateststatic Version
Version. LUCENE_8_5_1
Deprecated.Use lateststatic Version
Version. LUCENE_8_5_2
Deprecated.Use lateststatic Version
Version. LUCENE_8_6_0
Deprecated.Use lateststatic Version
Version. LUCENE_8_6_1
Deprecated.Use lateststatic Version
Version. LUCENE_8_6_2
Deprecated.Use lateststatic Version
Version. LUCENE_8_6_3
Deprecated.Use lateststatic Version
Version. LUCENE_8_7_0
Deprecated.Use lateststatic Version
Version. LUCENE_8_8_0
Deprecated.Use lateststatic Version
Version. LUCENE_8_8_1
Deprecated.Use lateststatic Version
Version. LUCENE_8_8_2
Deprecated.Use lateststatic Version
Version. LUCENE_8_9_0
Deprecated.Use lateststatic Version
Version. LUCENE_9_0_0
Deprecated.(9.1.0) Use lateststatic Version
Version. LUCENE_9_1_0
Deprecated.(9.2.0) Use lateststatic Version
Version. LUCENE_9_2_0
Deprecated.(9.3.0) Use lateststatic Version
Version. LUCENE_9_3_0
Deprecated.(9.4.0) Use lateststatic Version
Version. LUCENE_9_4_0
Deprecated.(9.5.0) Use lateststatic Version
Version. LUCENE_9_4_1
Deprecated.Use lateststatic Version
Version. LUCENE_9_4_2
Deprecated.Use lateststatic Version
Version. LUCENE_9_5_0
Deprecated.(9.6.0) Use lateststatic Version
Version. LUCENE_9_6_0
Deprecated.(9.7.0) Use lateststatic Version
Version. LUCENE_9_7_0
Deprecated.(9.8.0) Use lateststatic Version
Version. LUCENE_9_8_0
Deprecated.(9.9.0) Use lateststatic Version
Version. LUCENE_9_9_0
Match settings and bugs in Lucene's 9.9.0 release.static Version
Version. LUCENE_CURRENT
Deprecated.UseLATEST
Methods in org.apache.lucene.util that return Version Modifier and Type Method Description static Version
Version. fromBits(int major, int minor, int bugfix)
Returns a new version based on raw numbersstatic Version
Version. parse(String version)
Parse a version number of the form"major.minor.bugfix.prerelease"
.static Version
Version. parseLeniently(String version)
Parse the given version number as a constant or dot based version.Methods in org.apache.lucene.util with parameters of type Version Modifier and Type Method Description boolean
Version. onOrAfter(Version other)
Returns true if this version is the same or after the version from the argument.
-