Class FunctionObject

java.lang.Object
org.apache.sysds.runtime.functionobjects.FunctionObject
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
IndexFunction, ValueFunction

public abstract class FunctionObject extends Object implements Serializable
See Also:
  • Constructor Details

    • FunctionObject

      public FunctionObject()
  • Method Details

    • clone

      public final Object clone() throws CloneNotSupportedException
      Throws:
      CloneNotSupportedException
    • execute

      public double execute(double in1, double in2)
    • execute

      public double execute(long in1, long in2)
    • execute

      public double execute(double in)
    • execute

      public double execute(long in)
    • execute

      public boolean execute(boolean in1, boolean in2)
    • execute

      public boolean execute(boolean in)
    • execute

      public double execute(HashMap<String,String> params)
    • execute

      public Data execute(Data in1, double in2)
    • execute

      public Data execute(Data in1, double in2, double in3)
    • execute

      public Data execute(Data in1, double in2, double in3, double in4)
    • execute

      public Data execute(Data in1, Data in2)
    • execute

      public String execute(String in1)
    • execute

      public String execute(String in1, String in2)