Uses of Interface
com.solibri.smc.api.checking.ResultCategory
-
Packages that use ResultCategory Package Description com.solibri.smc.api.checking com.solibri.smc.api.communication com.solibri.smc.api.ui.views.checkingresults -
-
Uses of ResultCategory in com.solibri.smc.api.checking
Methods in com.solibri.smc.api.checking that return ResultCategory Modifier and Type Method Description ResultCategory
ResultFactory. createCategory(String uniqueName, String displayName)
Creates a new checking result category.ResultCategory
ResultFactory. createCategory(String uniqueName, String displayName, ResultCategory parent)
Creates a new checking result category.Methods in com.solibri.smc.api.checking that return types with arguments of type ResultCategory Modifier and Type Method Description Collection<ResultCategory>
Result. getCategories()
Deprecated.This method is deprecated as only one category may belong to a result.Optional<ResultCategory>
Result. getCategory()
Returns the category this result belongs to.Set<ResultCategory>
ResultCategory. getChildCategories()
Returns the categories for which this category is the parent.Optional<ResultCategory>
ResultCategory. getParentCategory()
Returns the parent result category of this result category if such exists.Methods in com.solibri.smc.api.checking with parameters of type ResultCategory Modifier and Type Method Description Result
ResultFactory. create(String name, String description, ResultCategory category)
Returns a result indicating that the component has a problem.ResultCategory
ResultFactory. createCategory(String uniqueName, String displayName, ResultCategory parent)
Creates a new checking result category.Result
Result. withCategory(ResultCategory category)
Returns a copy of this result but assigned to the specified category.Method parameters in com.solibri.smc.api.checking with type arguments of type ResultCategory Modifier and Type Method Description Result
ResultFactory. create(String name, String description, Collection<ResultCategory> categories)
Returns a result indicating that the component has a problem.Result
Result. withCategories(Collection<? extends ResultCategory> categories)
Deprecated.This method is deprecated as only one category can be assigned to a result. -
Uses of ResultCategory in com.solibri.smc.api.communication
Methods in com.solibri.smc.api.communication that return types with arguments of type ResultCategory Modifier and Type Method Description Optional<ResultCategory>
Slide. getResultCategory()
Returns the related checking result category, if one exists. -
Uses of ResultCategory in com.solibri.smc.api.ui.views.checkingresults
Methods in com.solibri.smc.api.ui.views.checkingresults that return types with arguments of type ResultCategory Modifier and Type Method Description Optional<ResultCategory>
CheckingResultsViewRow. getResultCategory()
Returns the category.Methods in com.solibri.smc.api.ui.views.checkingresults with parameters of type ResultCategory Modifier and Type Method Description static CheckingResultsViewRow
CheckingResultsViewRow. create(ResultCategory resultCategory)
-