Package javaff.data.metric

Examples of javaff.data.metric.BinaryFunction


  {
    if (f instanceof NamedFunction) return (PGNamedFunction) PGFuncMap.get(f);
    else if (f instanceof NumberFunction) return new PGNumberFunction(f.getValue(null));
    else if (f instanceof BinaryFunction)
    {
      BinaryFunction bf = (BinaryFunction) f;
      PGFunction f1 = makeFunction(bf.first);
      PGFunction s2 = makeFunction(bf.second);
      return new PGBinaryFunction(f1,s2,bf.type);
    }
    else return null;
View Full Code Here

TOP

Related Classes of javaff.data.metric.BinaryFunction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.