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(boolean importAborted, long numberOfErrors, long numberOfWarnings, long numberOfProcessedFacts, long numberOfChangedFacts, long numberOfProcessedRules, long numberOfChangedRules, long numberOfProcessedAxioms, long numberOfChangedAxioms)
- 
Method SummaryModifier and Type Method Description booleangetImportAborted()Returnstrueif the import was aborted before processing all input(s) fully.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(boolean importAborted, long numberOfErrors, long numberOfWarnings, long numberOfProcessedFacts, long numberOfChangedFacts, long numberOfProcessedRules, long numberOfChangedRules, long numberOfProcessedAxioms, long numberOfChangedAxioms)
 
- 
- 
Method Details- 
getImportAbortedpublic boolean getImportAborted()Returnstrueif the import was aborted before processing all input(s) fully.- Returns:
- trueif the import was aborted before processing all input(s) fully
 
- 
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
 
- 
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
 
 
-