mirror of https://github.com/apache/lucene.git
javadocs
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1374120 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
04f3188bf9
commit
817586eb34
|
@ -572,7 +572,7 @@ public class PackedInts {
|
|||
}
|
||||
return new Packed64(in, valueCount, bitsPerValue);
|
||||
default:
|
||||
throw new AssertionError("Unknwown Writer format: " + format);
|
||||
throw new AssertionError("Unknown Writer format: " + format);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -24,6 +24,9 @@ import org.apache.lucene.queries.function.docvalues.DoubleDocValues;
|
|||
import java.io.IOException;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Function that returns a constant double value for every document.
|
||||
*/
|
||||
public class DoubleConstValueSource extends ConstNumberSource {
|
||||
final double constant;
|
||||
private final float fv;
|
||||
|
|
|
@ -28,7 +28,13 @@ import org.apache.lucene.util.BytesRef;
|
|||
import java.io.IOException;
|
||||
import java.util.Map;
|
||||
|
||||
/** @lucene.internal */
|
||||
/**
|
||||
* Function that returns {@link TFIDFSimilarity #idf(long, long)}
|
||||
* for every document.
|
||||
* <p>
|
||||
* Note that the configured Similarity for the field must be
|
||||
* a subclass of {@link TFIDFSimilarity}
|
||||
* @lucene.internal */
|
||||
public class IDFValueSource extends DocFreqValueSource {
|
||||
public IDFValueSource(String field, String val, String indexedField, BytesRef indexedBytes) {
|
||||
super(field, val, indexedField, indexedBytes);
|
||||
|
|
|
@ -30,6 +30,10 @@ import java.util.List;
|
|||
import java.util.Map;
|
||||
|
||||
|
||||
/**
|
||||
* Depending on the boolean value of the <code>ifSource</code> function,
|
||||
* returns the value of the <code>trueSource</code> or <code>falseSource</code> function.
|
||||
*/
|
||||
public class IfFunction extends BoolFunction {
|
||||
private final ValueSource ifSource;
|
||||
private final ValueSource trueSource;
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
package org.apache.lucene.queries.function.valuesource;
|
||||
|
||||
import org.apache.lucene.index.AtomicReaderContext;
|
||||
import org.apache.lucene.index.IndexReader; // javadocs
|
||||
import org.apache.lucene.queries.function.FunctionValues;
|
||||
import org.apache.lucene.queries.function.ValueSource;
|
||||
import org.apache.lucene.search.IndexSearcher;
|
||||
|
@ -24,6 +25,11 @@ import org.apache.lucene.search.IndexSearcher;
|
|||
import java.io.IOException;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Returns the value of {@link IndexReader#maxDoc()}
|
||||
* for every document. This is the number of documents
|
||||
* including deletions.
|
||||
*/
|
||||
public class MaxDocValueSource extends ValueSource {
|
||||
public String name() {
|
||||
return "maxdoc";
|
||||
|
|
|
@ -28,6 +28,13 @@ import org.apache.lucene.search.similarities.TFIDFSimilarity;
|
|||
import java.io.IOException;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Function that returns {@link TFIDFSimilarity#decodeNormValue(byte)}
|
||||
* for every document.
|
||||
* <p>
|
||||
* Note that the configured Similarity for the field must be
|
||||
* a subclass of {@link TFIDFSimilarity}
|
||||
* @lucene.internal */
|
||||
public class NormValueSource extends ValueSource {
|
||||
protected final String field;
|
||||
public NormValueSource(String field) {
|
||||
|
|
|
@ -30,7 +30,10 @@ import java.io.IOException;
|
|||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* <code>TotalTermFreqValueSource</code> returns the total term freq (sum of term freqs across all docuyments).
|
||||
* <code>SumTotalTermFreqValueSource</code> returns the number of tokens.
|
||||
* (sum of term freqs across all documents, across all terms).
|
||||
* Returns -1 if frequencies were omitted for the field, or if
|
||||
* the codec doesn't support this statistic.
|
||||
* @lucene.internal
|
||||
*/
|
||||
public class SumTotalTermFreqValueSource extends ValueSource {
|
||||
|
|
|
@ -28,6 +28,13 @@ import org.apache.lucene.util.BytesRef;
|
|||
import java.io.IOException;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Function that returns {@link TFIDFSimilarity#tf(int)}
|
||||
* for every document.
|
||||
* <p>
|
||||
* Note that the configured Similarity for the field must be
|
||||
* a subclass of {@link TFIDFSimilarity}
|
||||
* @lucene.internal */
|
||||
public class TFValueSource extends TermFreqValueSource {
|
||||
public TFValueSource(String field, String val, String indexedField, BytesRef indexedBytes) {
|
||||
super(field, val, indexedField, indexedBytes);
|
||||
|
|
|
@ -26,6 +26,13 @@ import org.apache.lucene.util.BytesRef;
|
|||
import java.io.IOException;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Function that returns {@link DocsEnum#freq()} for the
|
||||
* supplied term in every document.
|
||||
* <p>
|
||||
* If the term does not exist in the document, returns 0.
|
||||
* If frequencies are omitted, returns 1.
|
||||
*/
|
||||
public class TermFreqValueSource extends DocFreqValueSource {
|
||||
public TermFreqValueSource(String field, String val, String indexedField, BytesRef indexedBytes) {
|
||||
super(field, val, indexedField, indexedBytes);
|
||||
|
|
|
@ -28,7 +28,10 @@ import java.io.IOException;
|
|||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* <code>TotalTermFreqValueSource</code> returns the total term freq (sum of term freqs across all docuyments).
|
||||
* <code>TotalTermFreqValueSource</code> returns the total term freq
|
||||
* (sum of term freqs across all documents).
|
||||
* Returns -1 if frequencies were omitted for the field, or if
|
||||
* the codec doesn't support this statistic.
|
||||
* @lucene.internal
|
||||
*/
|
||||
public class TotalTermFreqValueSource extends ValueSource {
|
||||
|
|
Loading…
Reference in New Issue