Interface IOperator

All Superinterfaces:
ISearchPath, IStatement
All Known Implementing Classes:
MetaOperator, PgOperator

public interface IOperator extends ISearchPath
Interface for database operators. Defines functionality for custom operators including argument types and return type.
  • Method Details

    • getRightArg

      String getRightArg()
      Gets the right argument type of this operator.
      Returns:
      the right argument type
    • getLeftArg

      String getLeftArg()
      Gets the left argument type of this operator.
      Returns:
      the left argument type
    • getReturns

      String getReturns()
      Gets the return type of this operator.
      Returns:
      the return type
    • setReturns

      void setReturns(String returns)
      Sets the return type of this operator.
      Parameters:
      returns - the return type to set