Interface TBoxReasonerStatus
-
public interface TBoxReasonerStatusWhat is the current state of the TBox reasoner?
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetExplanation()A description of the error state, or an empty string (never null).booleanisConsistent()Is the TBox free of inconsistency?booleanisInErrorState()Did the reasoner fail in its most recent attempt?booleanisReasoning()Is reasoning in progress based on changes to the TBox?
-
-
-
Method Detail
-
isReasoning
boolean isReasoning()
Is reasoning in progress based on changes to the TBox?
-
isConsistent
boolean isConsistent()
Is the TBox free of inconsistency?
-
isInErrorState
boolean isInErrorState()
Did the reasoner fail in its most recent attempt?
-
getExplanation
String getExplanation()
A description of the error state, or an empty string (never null).
-
-