Package org.kie.internal.ruleunit
Interface RuleUnitDescription
-
public interface RuleUnitDescription
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default StringgetCanonicalName()Optional<Class<?>>getDatasourceType(String name)default StringgetEntryPointName(String name)StringgetPackageName()Class<?>getRuleUnitClass()Deprecated.this is only used by PMMLdefault StringgetRuleUnitName()StringgetSimpleName()Collection<? extends RuleUnitVariable>getUnitVarDeclarations()Collection<String>getUnitVars()RuleUnitVariablegetVar(String name)Optional<Class<?>>getVarType(String name)booleanhasDataSource(String name)booleanhasVar(String name)
-
-
-
Method Detail
-
getRuleUnitClass
@Deprecated Class<?> getRuleUnitClass()
Deprecated.this is only used by PMML
-
getRuleUnitName
default String getRuleUnitName()
-
getCanonicalName
default String getCanonicalName()
-
getSimpleName
String getSimpleName()
-
getPackageName
String getPackageName()
-
getVar
RuleUnitVariable getVar(String name)
-
hasVar
boolean hasVar(String name)
-
getUnitVars
Collection<String> getUnitVars()
-
getUnitVarDeclarations
Collection<? extends RuleUnitVariable> getUnitVarDeclarations()
-
hasDataSource
boolean hasDataSource(String name)
-
-