Package com.solibri.smc.api.bcflive
Interface BCFCoordinationValues
public interface BCFCoordinationValues
This interface provides the collections of valid BCF topic coordination values that are used in Solibri issue
 coordination editor. Use 
BcfApi.setCoordinationValues(BCFCoordinationValues) to set the coordination values.- Since:
- 9.12.0
- 
Method SummaryModifier and TypeMethodDescriptionReturns the collection of all valid labels used in the coordination.Returns the collection of all valid priorities used in the coordination.Returns the collection of all valid stages used in the coordination.Returns the collection of all valid topic statuses used in the coordination.Returns the collection of all valid topic types used in the coordination.Returns the collection of all valid user IDs used in coordination.default booleanReturns true if any label value is allowed in the coordination else false.default booleanReturns true if any priority value is allowed in the coordination else false.default booleanReturns true if any stage value is allowed in the coordination else false.default booleanReturns true if any topic status value is allowed in the coordination else false.default booleanReturns true if any topic type value is allowed in the coordination else false.default booleanReturns true if any user ID value is allowed in the coordination else false.
- 
Method Details- 
getLabelsCollection<String> getLabels()Returns the collection of all valid labels used in the coordination.- Returns:
- the labels
- Since:
- 9.12.0
 
- 
getPrioritiesCollection<String> getPriorities()Returns the collection of all valid priorities used in the coordination.- Returns:
- the priorities
- Since:
- 9.12.0
 
- 
getStagesCollection<String> getStages()Returns the collection of all valid stages used in the coordination.- Returns:
- the stages
- Since:
- 9.12.0
 
- 
getTopicStatusesCollection<String> getTopicStatuses()Returns the collection of all valid topic statuses used in the coordination.- Returns:
- the topic statuses
- Since:
- 9.12.0
 
- 
getTopicTypesCollection<String> getTopicTypes()Returns the collection of all valid topic types used in the coordination.- Returns:
- the topic types
- Since:
- 9.12.0
 
- 
getUserIDsCollection<String> getUserIDs()Returns the collection of all valid user IDs used in coordination. The user IDs are recommended to be in email format as to uniquely identify users throughout multiple systems.- Returns:
- the user IDs
- Since:
- 9.12.0
 
- 
isAllowAnyLabeldefault boolean isAllowAnyLabel()Returns true if any label value is allowed in the coordination else false.- Returns:
- true if any label value is allowed else false
- Since:
- 9.12.0
 
- 
isAllowAnyPrioritydefault boolean isAllowAnyPriority()Returns true if any priority value is allowed in the coordination else false.- Returns:
- true if any priority value is allowed else false
- Since:
- 9.12.0
 
- 
isAllowAnyStagedefault boolean isAllowAnyStage()Returns true if any stage value is allowed in the coordination else false.- Returns:
- true if any stage value is allowed else false
- Since:
- 9.12.0
 
- 
isAllowAnyTopicStatusdefault boolean isAllowAnyTopicStatus()Returns true if any topic status value is allowed in the coordination else false.- Returns:
- true if any topic status value is allowed else false
- Since:
- 9.12.0
 
- 
isAllowAnyTopicTypedefault boolean isAllowAnyTopicType()Returns true if any topic type value is allowed in the coordination else false.- Returns:
- true if any topic type value is allowed else false
- Since:
- 9.12.0
 
- 
isAllowAnyUserIDdefault boolean isAllowAnyUserID()Returns true if any user ID value is allowed in the coordination else false.- Returns:
- true if any user ID value is allowed else false
- Since:
- 9.12.0
 
 
-