Interface IFunctionProvider
- All Known Implementing Classes:
AggregatorFunctionProvider,BuiltinFunctionProvider,CommonModuleFunctionProvider
public interface IFunctionProvider
Provider for getting available methods in Expression language in DCS
-
Method Summary
Modifier and TypeMethodDescriptiongetFunctionByName(String name) GetsExpressionsFunctionsFunctionby nameCollection<? extends IExpressionsFunctionsItem>getItems()GetsIExpressionsFunctionsItems corresponding to the available elements in the Expression language in DCSbooleanhasItems()Checks that there are items in provider
-
Method Details
-
getItems
Collection<? extends IExpressionsFunctionsItem> getItems()GetsIExpressionsFunctionsItems corresponding to the available elements in the Expression language in DCS- Returns:
- collection of
IExpressionsFunctionsItemcorresponding to the available elements in the Expression language in DCS, nevernull
-
getFunctionByName
GetsExpressionsFunctionsFunctionby name- Parameters:
name- name of theExpressionsFunctionsFunction, cannot benull- Returns:
ExpressionsFunctionsFunctionornullif there is no items withname
-
hasItems
boolean hasItems()Checks that there are items in provider- Returns:
trueif there are items in provider,falseotherwise
-