Class Version
WARNING: When changing the version parameter that you supply to components in Lucene, do not simply change the version at search-time, but instead also adjust your indexing code to match, and re-index.
-
Field Summary
Modifier and TypeFieldDescriptionfinal int
Bugfix number, incremented on release branchesstatic final Version
WARNING: if you use this setting, and then upgrade to a newer release of Lucene, sizable changes may happen.static final Version
Deprecated.(9.0.0) Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.(8.11.1) Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.Use lateststatic final Version
Deprecated.(9.1.0) Use lateststatic final Version
Match settings and bugs in Lucene's 9.1.0 release.static final Version
Deprecated.UseLATEST
final int
Major version, the difference between stable and trunkstatic final int
Constant for the minimal supported major version of an index.final int
Minor version, incremented within the stable branchfinal int
Prerelease version, currently 0 (alpha), 1 (beta), or 2 (final) -
Method Summary
Modifier and TypeMethodDescriptionboolean
static Version
fromBits
(int major, int minor, int bugfix) Returns a new version based on raw numbersstatic String
Return Lucene's full implementation version.int
hashCode()
boolean
Returns true if this version is the same or after the version from the argument.static Version
Parse a version number of the form"major.minor.bugfix.prerelease"
.static Version
parseLeniently
(String version) Parse the given version number as a constant or dot based version.toString()
-
Field Details
-
LUCENE_8_0_0
Deprecated.(9.0.0) Use latestMatch settings and bugs in Lucene's 8.0.0 release. -
LUCENE_8_1_0
Deprecated.Use latestMatch settings and bugs in Lucene's 8.1.0 release. -
LUCENE_8_1_1
Deprecated.Use latestMatch settings and bugs in Lucene's 8.1.1 release. -
LUCENE_8_2_0
Deprecated.Use latestMatch settings and bugs in Lucene's 8.2.0 release. -
LUCENE_8_3_0
Deprecated.Use latestMatch settings and bugs in Lucene's 8.3.0 release. -
LUCENE_8_3_1
Deprecated.Use latestMatch settings and bugs in Lucene's 8.3.1 release. -
LUCENE_8_4_0
Deprecated.Use latestMatch settings and bugs in Lucene's 8.4.0 release. -
LUCENE_8_4_1
Deprecated.Use latestMatch settings and bugs in Lucene's 8.4.1 release. -
LUCENE_8_5_0
Deprecated.Use latestMatch settings and bugs in Lucene's 8.5.0 release. -
LUCENE_8_5_1
Deprecated.Use latestMatch settings and bugs in Lucene's 8.5.1 release. -
LUCENE_8_5_2
Deprecated.Use latestMatch settings and bugs in Lucene's 8.5.2 release. -
LUCENE_8_6_0
Deprecated.Use latestMatch settings and bugs in Lucene's 8.6.0 release. -
LUCENE_8_6_1
Deprecated.Use latestMatch settings and bugs in Lucene's 8.6.1 release. -
LUCENE_8_6_2
Deprecated.Use latestMatch settings and bugs in Lucene's 8.6.2 release. -
LUCENE_8_6_3
Deprecated.Use latestMatch settings and bugs in Lucene's 8.6.3 release. -
LUCENE_8_7_0
Deprecated.Use latestMatch settings and bugs in Lucene's 8.7.0 release. -
LUCENE_8_8_0
Deprecated.Use latestMatch settings and bugs in Lucene's 8.8.0 release. -
LUCENE_8_8_1
Deprecated.Use latestMatch settings and bugs in Lucene's 8.8.1 release. -
LUCENE_8_8_2
Deprecated.Use latestMatch settings and bugs in Lucene's 8.8.2 release. -
LUCENE_8_9_0
Deprecated.Use latestMatch settings and bugs in Lucene's 8.9.0 release. -
LUCENE_8_10_0
Deprecated.Use latestMatch settings and bugs in Lucene's 8.10.0 release. -
LUCENE_8_10_1
Deprecated.Use latestMatch settings and bugs in Lucene's 8.10.1 release. -
LUCENE_8_11_0
Deprecated.(8.11.1) Use latestMatch settings and bugs in Lucene's 8.11.0 release. -
LUCENE_8_11_1
Deprecated.Use latestMatch settings and bugs in Lucene's 8.11.1 release. -
LUCENE_8_12_0
Deprecated.Use latestMatch settings and bugs in Lucene's 8.12.0 release. -
LUCENE_9_0_0
Deprecated.(9.1.0) Use latest -
LUCENE_9_1_0
Match settings and bugs in Lucene's 9.1.0 release.Use this to get the latest & greatest settings, bug fixes, etc, for Lucene.
-
LATEST
WARNING: if you use this setting, and then upgrade to a newer release of Lucene, sizable changes may happen. If backwards compatibility is important then you should instead explicitly specify an actual version.If you use this constant then you may need to re-index all of your documents when upgrading Lucene, as the way text is indexed may have changed. Additionally, you may need to re-test your entire application to ensure it behaves as expected, as some defaults may have changed and may break functionality in your application.
-
LUCENE_CURRENT
Deprecated.UseLATEST
Constant for backwards compatibility. -
MIN_SUPPORTED_MAJOR
public static final int MIN_SUPPORTED_MAJORConstant for the minimal supported major version of an index. This version is defined by the version that initially created the index. -
major
public final int majorMajor version, the difference between stable and trunk -
minor
public final int minorMinor version, incremented within the stable branch -
bugfix
public final int bugfixBugfix number, incremented on release branches -
prerelease
public final int prereleasePrerelease version, currently 0 (alpha), 1 (beta), or 2 (final)
-
-
Method Details
-
parse
Parse a version number of the form"major.minor.bugfix.prerelease"
.Part
".bugfix"
and part".prerelease"
are optional. Note that this is forwards compatible: the parsed version does not have to exist as a constant.- Throws:
ParseException
- NOTE: This API is for internal purposes only and might change in incompatible ways in the next release.
-
parseLeniently
Parse the given version number as a constant or dot based version.This method allows to use
"LUCENE_X_Y"
constant names, or version numbers in the format"x.y.z"
.- Throws:
ParseException
- NOTE: This API is for internal purposes only and might change in incompatible ways in the next release.
-
fromBits
Returns a new version based on raw numbers- NOTE: This API is for internal purposes only and might change in incompatible ways in the next release.
-
onOrAfter
Returns true if this version is the same or after the version from the argument. -
toString
-
equals
-
hashCode
public int hashCode() -
getPackageImplementationVersion
Return Lucene's full implementation version. This version is saved in Lucene's metadata at build time (JAR manifest, module info). If it is not available, anunknown
implementation version is returned.- Returns:
- Lucene implementation version string, never
null
.
-