Package com.solibri.smc.api.checking
Interface RuleParameter<T>
-
- Type Parameters:
T
- the type of the value returned by this parameter
- All Known Subinterfaces:
BooleanParameter
,ClassificationParameter
,DoubleParameter
,EnumerationParameter
,FilterParameter
,IntParameter
,PropertyReferenceParameter
,StringParameter
,TableParameter
public interface RuleParameter<T>
This class defines a rule parameter.- Since:
- 9.10.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getId()
Returns the rule parameter id.Rule
getRule()
Returns the rule this parameter belongs to.T
getValue()
Returns the value of this rule parameter.
-
-
-
Method Detail
-
getId
String getId()
Returns the rule parameter id. The id describes what the parameter is for and it is unique within the rule.- Returns:
- the rule parameter id
- Since:
- 9.10.2
-
getValue
T getValue()
Returns the value of this rule parameter.- Returns:
- the value
-
getRule
Rule getRule()
Returns the rule this parameter belongs to.- Returns:
- the rule this parameter belongs to
-
-