Package com.solibri.smc.api.checking
Interface Checking
-
public interface CheckingChecking provides access to information related to checking activities, such as whether checking has been done, and what the results are.- Since:
- 9.10.6
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classChecking.StateDescribes the state of the checking.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<Result>getResults()Returns results of the checking.Collection<Result>getResults(Rule rule)Returns results of the checking for a givenRule.Checking.StategetState()Returns the state of the checking.
-
-
-
Method Detail
-
getState
Checking.State getState()
Returns the state of the checking.- Returns:
- the state
- Since:
- 9.10.6
-
getResults
Collection<Result> getResults()
Returns results of the checking. When checking is ongoing, the results returned might be empty.- Returns:
- results of the checking
- Since:
- 9.10.6
-
getResults
Collection<Result> getResults(Rule rule)
Returns results of the checking for a givenRule. When checking is ongoing, the results returned might be empty.- Parameters:
rule- the rule for which to get results- Returns:
- results of the checking for a given rule
- Since:
- 9.12.0
-
-