Class ImportResult
java.lang.Object
tech.oxfordsemantic.jrdfox.client.ImportResult
public class ImportResult
extends java.lang.Object
Summarises the result of data import.
- 
Constructor SummaryConstructors Constructor Description ImportResult(long numberOfProcessedFacts, long numberOfChangedFacts, long numberOfProcessedRules, long numberOfChangedRules, long numberOfProcessedAxioms, long numberOfChangedAxioms, long numberOfErrors, long numberOfWarnings)
- 
Method SummaryModifier and Type Method Description longgetNumberOfChangedAxioms()Returns the number of axioms that were changed during the import.longgetNumberOfChangedFacts()Returns the number of facts that were changed during the import.longgetNumberOfChangedRules()Returns the number of rules that were changed during the import.longgetNumberOfErrors()Returns the number of errors that were reported during the import.longgetNumberOfProcessedAxioms()Returns the number of axioms that were processed during the import.longgetNumberOfProcessedFacts()Returns the number of facts that were processed during the import.longgetNumberOfProcessedRules()Returns the number of rules that were processed during the import.longgetNumberOfWarnings()Returns the number of warnings that were reported during the import.
- 
Constructor Details- 
ImportResultpublic ImportResult(long numberOfProcessedFacts, long numberOfChangedFacts, long numberOfProcessedRules, long numberOfChangedRules, long numberOfProcessedAxioms, long numberOfChangedAxioms, long numberOfErrors, long numberOfWarnings)
 
- 
- 
Method Details- 
getNumberOfProcessedFactspublic long getNumberOfProcessedFacts()Returns the number of facts that were processed during the import.- Returns:
- the number of facts processed
 
- 
getNumberOfChangedFactspublic long getNumberOfChangedFacts()Returns the number of facts that were changed during the import.- Returns:
- the number of facts changed
 
- 
getNumberOfProcessedRulespublic long getNumberOfProcessedRules()Returns the number of rules that were processed during the import.- Returns:
- the number of rules processed
 
- 
getNumberOfChangedRulespublic long getNumberOfChangedRules()Returns the number of rules that were changed during the import.- Returns:
- the number of rules changed
 
- 
getNumberOfProcessedAxiomspublic long getNumberOfProcessedAxioms()Returns the number of axioms that were processed during the import.- Returns:
- the number of axioms processed
 
- 
getNumberOfChangedAxiomspublic long getNumberOfChangedAxioms()Returns the number of axioms that were changed during the import.- Returns:
- the number of axioms changed
 
- 
getNumberOfErrorspublic long getNumberOfErrors()Returns the number of errors that were reported during the import.- Returns:
- the number of errors reported during the import
 
- 
getNumberOfWarningspublic long getNumberOfWarnings()Returns the number of warnings that were reported during the import.- Returns:
- the number of warnings reported during the import
 
 
-