org.apache.jackrabbit.spi
Interface QueryResultRow


public interface QueryResultRow

QueryResultRow represents the SPI equivalent of a query result row. It provides access to the id of the Node this row represents as well as to the score and to the qualified values represent in this result row.


Method Summary
 NodeId getNodeId()
          Returns NodeId of node this result row represents.
 double getScore()
          Returns score of this result row.
 QValue[] getValues()
          Returns an array of QValues.
 

Method Detail

getNodeId

NodeId getNodeId()
Returns NodeId of node this result row represents.

Returns:
node id of the Node this result row represents.

getScore

double getScore()
Returns score of this result row.

Returns:
score of this result row.

getValues

QValue[] getValues()
Returns an array of QValues.

Returns:
an array of QValues representing the values present in this result row.
See Also:
Row.getValue(String), Row.getValues()


Copyright © 2004-2009 The Apache Software Foundation. All Rights Reserved.