Class InternalFunction

  • All Implemented Interfaces:
    Serializable

    public class InternalFunction
    extends Function
    Represents functions that are internal to the database engine in place.
    Since:
    2.0.1
    Author:
    Rui Vilao (rui.vilao@feedzai.com)
    See Also:
    Serialized Form
    • Constructor Detail

      • InternalFunction

        public InternalFunction​(String function)
        Creates a new instance of InternalFunction.
        Parameters:
        function - The function.
      • InternalFunction

        public InternalFunction​(String function,
                                Expression exp)
        Creates a new instance of InternalFunction.
        Parameters:
        function - The function.
        exp - The expression.
    • Method Detail

      • isUDF

        public boolean isUDF()
        Description copied from class: Function
        Checks if this function is a UDF.
        Overrides:
        isUDF in class Function
        Returns:
        true if the function is user defined, false otherwise.