javautils.fun
Class ObjectToObjectToBoolean

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

public abstract class ObjectToObjectToBoolean
extends Function

Object->Object->boolean function.


Constructor Summary
ObjectToObjectToBoolean()
           
 
Method Summary
static ObjectToObjectToBoolean 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 ObjectToObjectToBoolean from(Function f)
          A wrapper that calls the given arbitrary function.
abstract  boolean 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

ObjectToObjectToBoolean

public ObjectToObjectToBoolean()
Method Detail

with

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

from

public static ObjectToObjectToBoolean from(Function f)

A wrapper that calls the given arbitrary function.

Note:


bindSelf

public static ObjectToObjectToBoolean 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.