org.apache.solr.search.function
Class DocValues

java.lang.Object
  extended by org.apache.solr.search.function.DocValues

public abstract class DocValues
extends Object

Represents field values as different types. Normally created via a ValueSource for a particular field and reader.

Version:
$Id: DocValues.java 472574 2006-11-08 18:25:52Z yonik $
Author:
yonik

Constructor Summary
DocValues()
           
 
Method Summary
 double doubleVal(int doc)
           
 Explanation explain(int doc)
           
 float floatVal(int doc)
           
 int intVal(int doc)
           
 long longVal(int doc)
           
 String strVal(int doc)
           
abstract  String toString(int doc)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DocValues

public DocValues()
Method Detail

floatVal

public float floatVal(int doc)

intVal

public int intVal(int doc)

longVal

public long longVal(int doc)

doubleVal

public double doubleVal(int doc)

strVal

public String strVal(int doc)

toString

public abstract String toString(int doc)

explain

public Explanation explain(int doc)


Copyright © 2006 - 2009 The Apache Software Foundation