| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectnet.sf.jga.fn.Functor<R>
net.sf.jga.fn.Generator<R>
net.sf.jga.fn.adaptor.Bind<T,R>
public class Bind<T,R>
Generator that wraps a given UnaryFunctor, passing a constant value as the argument of the child functor.
Copyright © 2004-2005 David A. Hall
| Nested Class Summary | |
|---|---|
| static interface | Bind.VisitorInterface for classes that may interpret an Bind functor. | 
| Constructor Summary | |
|---|---|
| Bind(T constant,
     UnaryFunctor<T,R> fn)Builds a Bind Functor with the given constant and child functor. | |
| Method Summary | |
|---|---|
|  void | accept(Visitor v)Calls the Visitor's visit(Bind)method, if it
 implements the nested Visitor interface. | 
|  R | fn()Given one argument, passes the constant value and the argument to the child functor and returns the result. | 
|  T | getConstant()Returns the constant value | 
|  UnaryFunctor<T,R> | getFunctor()Returns the child functor for this functor | 
|  java.lang.String | toString() | 
| Methods inherited from class net.sf.jga.fn.Generator | 
|---|
| bind0th, bindNth, eval | 
| Methods inherited from class net.sf.jga.fn.Functor | 
|---|
| composeNth, composeNth, generateNth | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait | 
| Constructor Detail | 
|---|
public Bind(T constant,
            UnaryFunctor<T,R> fn)
java.lang.IllegalArgumentException - if the functor is null.| Method Detail | 
|---|
public UnaryFunctor<T,R> getFunctor()
public T getConstant()
public R fn()
fn in class Generator<R>public void accept(Visitor v)
visit(Bind) method, if it
 implements the nested Visitor interface.
accept in interface Visitableaccept in class Functor<R>public java.lang.String toString()
toString in class java.lang.Object| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||