Uses of Class
org.apache.lucene.util.Version
-
Packages that use Version Package Description org.apache.lucene.analysis Text analysis.org.apache.lucene.analysis.custom A general-purpose Analyzer that can be created with a builder-style API.org.apache.lucene.analysis.util Utility functions for 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 private VersionAnalyzer. versionMethods in org.apache.lucene.analysis that return Version Modifier and Type Method Description VersionAnalyzer. getVersion()Return the version of Lucene this analyzer will mimic the behavior of for analysis.Methods in org.apache.lucene.analysis with parameters of type Version Modifier and Type Method Description voidAnalyzer. setVersion(Version v)Set the version of Lucene this analyzer should mimic the behavior for for analysis. -
Uses of Version in org.apache.lucene.analysis.custom
Fields in org.apache.lucene.analysis.custom with type parameters of type Version Modifier and Type Field Description private SetOnce<Version>CustomAnalyzer.Builder. defaultMatchVersionMethods in org.apache.lucene.analysis.custom with parameters of type Version Modifier and Type Method Description CustomAnalyzer.BuilderCustomAnalyzer.Builder. withDefaultMatchVersion(Version version)This match version is passed as default to all tokenizers or filters.Constructors in org.apache.lucene.analysis.custom with parameters of type Version Constructor Description CustomAnalyzer(Version defaultMatchVersion, CharFilterFactory[] charFilters, TokenizerFactory tokenizer, TokenFilterFactory[] tokenFilters, java.lang.Integer posIncGap, java.lang.Integer offsetGap) -
Uses of Version in org.apache.lucene.analysis.util
Fields in org.apache.lucene.analysis.util declared as Version Modifier and Type Field Description protected VersionAbstractAnalysisFactory. luceneMatchVersionthe luceneVersion argMethods in org.apache.lucene.analysis.util that return Version Modifier and Type Method Description VersionAbstractAnalysisFactory. getLuceneMatchVersion() -
Uses of Version in org.apache.lucene.index
Fields in org.apache.lucene.index declared as Version Modifier and Type Field Description private VersionSegmentInfos. luceneVersionWhich Lucene version wrote this commit.private VersionSegmentInfos. minSegmentLuceneVersionVersion of the oldest segment in the index, or null if there are no segments.private VersionLeafMetaData. minVersion(package private) VersionSegmentInfo. minVersionprivate VersionSegmentInfo. versionMethods in org.apache.lucene.index that return Version Modifier and Type Method Description VersionSegmentInfos. getCommitLuceneVersion()Returns which LuceneVersionwrote this commit, or null if the version this index was written with did not directly record the version.VersionSegmentInfos. getMinSegmentLuceneVersion()Returns the version of the oldest segment, or null if there are no segments.VersionLeafMetaData. getMinVersion()Return the minimum Lucene version that contributed documents to this index, ornullif this information is not available.VersionSegmentInfo. getMinVersion()Return the minimum Lucene version that contributed documents to this segment, ornullif it is unknown.VersionSegmentInfo. 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)Expert: Sole constructor.SegmentInfo(Directory dir, Version version, Version minVersion, java.lang.String name, int maxDoc, boolean isCompoundFile, Codec codec, java.util.Map<java.lang.String,java.lang.String> diagnostics, byte[] id, java.util.Map<java.lang.String,java.lang.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 VersionVersion. LATESTWARNING: if you use this setting, and then upgrade to a newer release of Lucene, sizable changes may happen.static VersionVersion. LUCENE_7_0_0Deprecated.(8.0.0) Use lateststatic VersionVersion. LUCENE_7_0_1Deprecated.Use lateststatic VersionVersion. LUCENE_7_1_0Deprecated.Use lateststatic VersionVersion. LUCENE_7_2_0Deprecated.Use lateststatic VersionVersion. LUCENE_7_2_1Deprecated.Use lateststatic VersionVersion. LUCENE_7_3_0Deprecated.Use lateststatic VersionVersion. LUCENE_7_3_1Deprecated.Use lateststatic VersionVersion. LUCENE_7_4_0Deprecated.Use lateststatic VersionVersion. LUCENE_7_5_0Deprecated.Use lateststatic VersionVersion. LUCENE_7_6_0Deprecated.Use lateststatic VersionVersion. LUCENE_7_7_0Deprecated.Use lateststatic VersionVersion. LUCENE_7_7_1Deprecated.Use lateststatic VersionVersion. LUCENE_7_7_2Deprecated.Use lateststatic VersionVersion. LUCENE_7_7_3Deprecated.Use lateststatic VersionVersion. LUCENE_7_8_0Deprecated.Use lateststatic VersionVersion. LUCENE_8_0_0Deprecated.(8.1.0) Use lateststatic VersionVersion. LUCENE_8_1_0Deprecated.(8.2.0) Use lateststatic VersionVersion. LUCENE_8_1_1Deprecated.Use lateststatic VersionVersion. LUCENE_8_2_0Deprecated.(8.3.0) Use lateststatic VersionVersion. LUCENE_8_3_0Deprecated.(8.4.0) Use lateststatic VersionVersion. LUCENE_8_3_1Deprecated.Use lateststatic VersionVersion. LUCENE_8_4_0Deprecated.(8.5.0) Use lateststatic VersionVersion. LUCENE_8_4_1Deprecated.Use lateststatic VersionVersion. LUCENE_8_5_0Deprecated.(8.6.0) Use lateststatic VersionVersion. LUCENE_8_5_1Deprecated.Use lateststatic VersionVersion. LUCENE_8_5_2Deprecated.Use lateststatic VersionVersion. LUCENE_8_6_0Deprecated.(8.7.0) Use lateststatic VersionVersion. LUCENE_8_6_1Deprecated.Use lateststatic VersionVersion. LUCENE_8_6_2Deprecated.Use lateststatic VersionVersion. LUCENE_8_6_3Deprecated.Use lateststatic VersionVersion. LUCENE_8_7_0Deprecated.(8.8.0) Use lateststatic VersionVersion. LUCENE_8_8_0Deprecated.(8.8.1) Use lateststatic VersionVersion. LUCENE_8_8_1Deprecated.(8.8.2) Use lateststatic VersionVersion. LUCENE_8_8_2Match settings and bugs in Lucene's 8.8.2 release.static VersionVersion. LUCENE_CURRENTDeprecated.UseLATESTMethods in org.apache.lucene.util that return Version Modifier and Type Method Description static VersionVersion. fromBits(int major, int minor, int bugfix)Returns a new version based on raw numbersstatic VersionVersion. parse(java.lang.String version)Parse a version number of the form"major.minor.bugfix.prerelease".static VersionVersion. parseLeniently(java.lang.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 booleanVersion. onOrAfter(Version other)Returns true if this version is the same or after the version from the argument.
-