Class StatementResult
java.lang.Object
tech.oxfordsemantic.jrdfox.client.StatementResult
public class StatementResult
extends java.lang.Object
Summaries the result of statement evaluation.
- 
Constructor SummaryConstructors Constructor Description StatementResult(long numberOfTuples, long totalNumberOfTuples)
- 
Method SummaryModifier and Type Method Description longgetNumberOfTuples()Returns the number of individual answers that the query produced: answers returned with multiplicity more than one are counted just once.longgetTotalNumberOfTuples()Returns the total number of answers to a query and is equal to the sum of the multiplicities of all answers.
- 
Constructor Details- 
StatementResultpublic StatementResult(long numberOfTuples, long totalNumberOfTuples)
 
- 
- 
Method Details- 
getNumberOfTuplespublic long getNumberOfTuples()Returns the number of individual answers that the query produced: answers returned with multiplicity more than one are counted just once.- Returns:
- the number of individual answers to a query
 
- 
getTotalNumberOfTuplespublic long getTotalNumberOfTuples()Returns the total number of answers to a query and is equal to the sum of the multiplicities of all answers.- Returns:
- the total number of answers to a query
 
 
-