mirror of https://github.com/apache/lucene.git
Minor javadoc improvements.
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@379189 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ca10021bca
commit
f9f3161f57
|
@ -370,13 +370,13 @@
|
|||
<packageset dir="contrib/highlighter/src/java"/>
|
||||
<packageset dir="contrib/similarity/src/java"/>
|
||||
<packageset dir="contrib/spellchecker/src/java"/>
|
||||
<packageset dir="contrib/snowball/src/java" excludes="net/"/>
|
||||
<packageset dir="contrib/snowball/src/java"/>
|
||||
<packageset dir="contrib/swing/src/java"/>
|
||||
<packageset dir="contrib/memory/src/java"/>
|
||||
|
||||
<group title="Core" packages="org.apache.*:org.apache.lucene.analysis:org.apache.lucene.analysis.standard*"/>
|
||||
<group title="Analysis" packages="org.apache.lucene.analysis.*"/>
|
||||
<group title="Snowball" packages="org.apache.lucene.analysis.snowball*"/>
|
||||
<group title="Snowball Stemmers" packages="org.apache.lucene.analysis.snowball*:net.sf.snowball*"/>
|
||||
<group title="Highlighter" packages="org.apache.lucene.search.highlight*"/>
|
||||
<group title="MoreLikeThis" packages="org.apache.lucene.search.similar*"/>
|
||||
<group title="SpellChecker" packages="org.apache.lucene.search.spell*"/>
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
<html><head></head>
|
||||
<body>
|
||||
Analyzer for Brazilian.
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,5 @@
|
|||
<html><head></head>
|
||||
<body>
|
||||
Analyzer for Chinese, Japanese and Korean.
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,5 @@
|
|||
<html><head></head>
|
||||
<body>
|
||||
Analyzer for Chinese.
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,5 @@
|
|||
<html><head></head>
|
||||
<body>
|
||||
Analyzer for Czech.
|
||||
</body>
|
||||
</html>
|
|
@ -1,5 +1,5 @@
|
|||
<html>
|
||||
<html><head></head>
|
||||
<body>
|
||||
Support for indexing and searching of German text. The source files are encoded in UTF-8.
|
||||
Analyzer for German.
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
<html><head></head>
|
||||
<body>
|
||||
Analyzer for Greek.
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,5 @@
|
|||
<html><head></head>
|
||||
<body>
|
||||
Analyzer for French.
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,5 @@
|
|||
<html><head></head>
|
||||
<body>
|
||||
Analyzer for Dutch.
|
||||
</body>
|
||||
</html>
|
|
@ -1,5 +1,5 @@
|
|||
<html>
|
||||
<html><head></head>
|
||||
<body>
|
||||
Support for indexing and searching Russian text.
|
||||
Analyzer for Russian.
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<html>
|
||||
<body>
|
||||
Lucene analyzer that uses Snowball stemmers.
|
||||
{@link org.apache.lucene.analysis.TokenFilter} and {@link
|
||||
org.apache.lucene.analysis.Analyzer} implementations that use Snowball
|
||||
stemmers.
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
<html><head></head>
|
||||
<body>
|
||||
Suggest alternate spellings for words.
|
||||
</body>
|
||||
</html>
|
|
@ -210,6 +210,7 @@ public class DateTools {
|
|||
return cal.getTime().getTime();
|
||||
}
|
||||
|
||||
/** Specifies the time granularity. */
|
||||
public static class Resolution {
|
||||
|
||||
public static final Resolution YEAR = new Resolution("year");
|
||||
|
|
|
@ -51,6 +51,7 @@ public final class Field implements Serializable {
|
|||
|
||||
private float boost = 1.0f;
|
||||
|
||||
/** Specifies whether and how a field should be stored. */
|
||||
public static final class Store extends Parameter implements Serializable {
|
||||
|
||||
private Store(String name) {
|
||||
|
@ -73,6 +74,7 @@ public final class Field implements Serializable {
|
|||
public static final Store NO = new Store("NO");
|
||||
}
|
||||
|
||||
/** Specifies whether and how a field should be indexed. */
|
||||
public static final class Index extends Parameter implements Serializable {
|
||||
|
||||
private Index(String name) {
|
||||
|
@ -106,6 +108,7 @@ public final class Field implements Serializable {
|
|||
|
||||
}
|
||||
|
||||
/** Specifies whether and how a field should have term vectors. */
|
||||
public static final class TermVector extends Parameter implements Serializable {
|
||||
|
||||
private TermVector(String name) {
|
||||
|
|
|
@ -21,6 +21,7 @@ import org.apache.lucene.util.Parameter;
|
|||
/** A clause in a BooleanQuery. */
|
||||
public class BooleanClause implements java.io.Serializable {
|
||||
|
||||
/** Specifies how terms may occur in matching documents. */
|
||||
public static final class Occur extends Parameter implements java.io.Serializable {
|
||||
|
||||
private Occur(String name) {
|
||||
|
|
Loading…
Reference in New Issue