javautils.fun
Class ObjectToObjectToObject

java.lang.Object
  |
  +--javautils.fun.Function
        |
        +--javautils.fun.ObjectToObjectToObject

public abstract class ObjectToObjectToObject
extends Function

Object->Object->Object function.


Constructor Summary
ObjectToObjectToObject()
           
 
Method Summary
static ObjectToObjectToObject bindSelf(java.lang.reflect.Method method, java.lang.Object self)
          A wrapper that calls the given arbitrary method on the given object with the parameter given to the with(java.lang.Object, java.lang.Object)-method of the wrapper.
static ObjectToObjectToObject from(Function f)
          A wrapper that calls the given arbitrary function.
abstract  java.lang.Object with(java.lang.Object _0, java.lang.Object _1)
           
 
Methods inherited from class javautils.fun.Function
getMethod, getSelf, invoke
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ObjectToObjectToObject

public ObjectToObjectToObject()
Method Detail

with

public abstract java.lang.Object with(java.lang.Object _0,
                                      java.lang.Object _1)

from

public static ObjectToObjectToObject from(Function f)

A wrapper that calls the given arbitrary function.

Note:


bindSelf

public static ObjectToObjectToObject bindSelf(java.lang.reflect.Method method,
                                              java.lang.Object self)

A wrapper that calls the given arbitrary method on the given object with the parameter given to the with(java.lang.Object, java.lang.Object)-method of the wrapper.