Class RoundSigFunction
java.lang.Object
com.aquima.interactions.expressions.functions.number.RoundSigFunction
- All Implemented Interfaces:
IFunction
,Serializable
This function rounds a number to a multiple of the number.
- Since:
- 5.0
- Author:
- F. van der Meer
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionRoundSigFunction
(String functionName, Boolean updown) Constructs the round function with the function name and a boolean indicating how the rounding should be performed. -
Method Summary
Modifier and TypeMethodDescriptiondetermineResultType
(ISemanticNode... arguments) This method is used to determine the result type of the function using the type information of the parameters that will be passed to the function.evaluate
(IArgumentList arguments) This method should execute the function using the supplied arguments.This method returns an array containing the definitions of the arguments the function expects.getName()
This method returns the name of the function.boolean
This method returns a boolean indicating that the function is deprecated and should no longer be used.protected IValue
roundmultiple
(Boolean updown, double numberValue, double significance)
-
Constructor Details
-
Method Details
-
getArguments
Description copied from interface:IFunction
This method returns an array containing the definitions of the arguments the function expects. When the function does not accept any arguments at all, an empty array should be returned.- Specified by:
getArguments
in interfaceIFunction
- Returns:
- Array containing the definitions of the parameters.
-
evaluate
Description copied from interface:IFunction
This method should execute the function using the supplied arguments. -
roundmultiple
-
getName
Description copied from interface:IFunction
This method returns the name of the function. -
determineResultType
Description copied from interface:IFunction
This method is used to determine the result type of the function using the type information of the parameters that will be passed to the function.- Specified by:
determineResultType
in interfaceIFunction
- Parameters:
arguments
- The type information of the parameters.- Returns:
- The result type of the function.
-
isDeprecated
public boolean isDeprecated()Description copied from interface:IFunction
This method returns a boolean indicating that the function is deprecated and should no longer be used. Functions that are not deprecated should return the value false.- Specified by:
isDeprecated
in interfaceIFunction
- Returns:
- A message indicating that the function is deprecated.
-