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.
|
Modifier and Type | Method and Description |
---|---|
Version |
Analyzer.getVersion()
Return the version of Lucene this analyzer will mimic the behavior of for analysis.
|
Modifier and Type | Method and Description |
---|---|
void |
Analyzer.setVersion(Version v)
Set the version of Lucene this analyzer should mimic the behavior for for analysis.
|
Modifier and Type | Method and Description |
---|---|
Version |
SegmentInfos.getCommitLuceneVersion()
Returns which Lucene
Version 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,
or
null if this information is not available. |
Version |
SegmentInfo.getMinVersion()
Return the minimum Lucene version that contributed documents to this
segment, or
null if it is unknown. |
Version |
SegmentInfo.getVersion()
Returns the version of the code which wrote the segment.
|
Constructor and Description |
---|
LeafMetaData(int createdVersionMajor,
Version minVersion,
Sort sort)
Expert: Sole constructor.
|
SegmentInfo(Directory dir,
Version version,
Version minVersion,
String name,
int maxDoc,
boolean isCompoundFile,
Codec codec,
Map<String,String> diagnostics,
byte[] id,
Map<String,String> attributes,
Sort indexSort)
Construct a new complete SegmentInfo instance from input.
|
Modifier and Type | Field and 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_7_0_0
Deprecated.
(8.0.0) Use latest
|
static Version |
Version.LUCENE_7_0_1
Deprecated.
Use latest
|
static Version |
Version.LUCENE_7_1_0
Deprecated.
Use latest
|
static Version |
Version.LUCENE_7_2_0
Deprecated.
Use latest
|
static Version |
Version.LUCENE_7_2_1
Deprecated.
Use latest
|
static Version |
Version.LUCENE_7_3_0
Deprecated.
Use latest
|
static Version |
Version.LUCENE_7_3_1
Deprecated.
Use latest
|
static Version |
Version.LUCENE_7_4_0
Deprecated.
Use latest
|
static Version |
Version.LUCENE_7_5_0
Deprecated.
Use latest
|
static Version |
Version.LUCENE_7_6_0
Deprecated.
Use latest
|
static Version |
Version.LUCENE_7_7_0
Deprecated.
Use latest
|
static Version |
Version.LUCENE_7_7_1
Deprecated.
Use latest
|
static Version |
Version.LUCENE_7_8_0
Deprecated.
Use latest
|
static Version |
Version.LUCENE_8_0_0
Deprecated.
(8.1.0) Use latest
|
static Version |
Version.LUCENE_8_1_0
Deprecated.
(8.1.1) Use latest
|
static Version |
Version.LUCENE_8_1_1
Match settings and bugs in Lucene's 8.1.1 release.
|
static Version |
Version.LUCENE_CURRENT
Deprecated.
Use
LATEST |
Modifier and Type | Method and Description |
---|---|
static Version |
Version.fromBits(int major,
int minor,
int bugfix)
Returns a new version based on raw numbers
|
static 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.
|
Modifier and Type | Method and Description |
---|---|
boolean |
Version.onOrAfter(Version other)
Returns true if this version is the same or after the version from the argument.
|
Copyright © 2000-2019 Apache Software Foundation. All Rights Reserved.