Class ConversionExpression

    • Constructor Detail

      • ConversionExpression

        public ConversionExpression​(IExpressionNode expr,
                                    DataType requestedType)
        Constructs the conversion expression with the required arguments.
        Parameters:
        expr - The expression who's result should be converted to another data type.
        requestedType - The data type the result should be converted to.
    • Method Detail

      • evaluate

        public IValue evaluate​(IValueEnvironment environment)
        Description copied from interface: IExpressionNode
        This method evaluates the node using the environment passed as argument and returns the result as a value or null if the result is unknown.
        Specified by:
        evaluate in interface IExpressionNode
        Parameters:
        environment - The environment that should be used when evaluating the node.
        Returns:
        The result of the evaluation, or null if the result is unknown.