Interface IExpression

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.Object execute()
      Execute the query.
      java.lang.Object execute​(java.lang.String[] names, java.lang.Object[] values)
      Execute the query using local parameters.
      java.lang.Object execute​(java.lang.String name, java.lang.Object value)
      Execute the query using a local parameter.
      java.lang.Object getValue()
      Evaluate the expression.
    • Method Detail

      • getValue

        java.lang.Object getValue()
        Evaluate the expression.
        Returns:
        The value of the expression.
      • execute

        java.lang.Object execute()
        Execute the query.
        Returns:
        the result value of the query.
      • execute

        java.lang.Object execute​(java.lang.String name,
                                 java.lang.Object value)
        Execute the query using a local parameter.
        Parameters:
        name - The name of the local parameter.
        value - The value of the local parameter.
        Returns:
        the result value of the query.
      • execute

        java.lang.Object execute​(java.lang.String[] names,
                                 java.lang.Object[] values)
        Execute the query using local parameters.
        Parameters:
        names - The names of parameters.
        values - The parameter values.
        Returns:
        The return value.