| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use NullaryFunctor | |
|---|---|
| org.apache.commons.functor | Basic functor interfaces. | 
| org.apache.commons.functor.adapter | Classes that adapt one functor interface to another. | 
| org.apache.commons.functor.core | Commonly used functor implementations. | 
| org.apache.commons.functor.core.algorithm | Various algorithm-esque functors. | 
| org.apache.commons.functor.core.composite | Functors composed of other functors. | 
| Uses of NullaryFunctor in org.apache.commons.functor | 
|---|
| Subinterfaces of NullaryFunctor in org.apache.commons.functor | |
|---|---|
|  interface | Function<T>A functor that takes no arguments and returns a value. | 
|  interface | PredicateA functor that takes no arguments and returns a booleanvalue. | 
|  interface | ProcedureA functor that takes no arguments and returns no value. | 
| Uses of NullaryFunctor in org.apache.commons.functor.adapter | 
|---|
| Classes in org.apache.commons.functor.adapter that implement NullaryFunctor | |
|---|---|
|  class | BoundFunction<T>Adapts a UnaryFunctionto theFunctioninterface
 using a constant unary argument. | 
|  class | BoundPredicateAdapts a UnaryPredicateto thePredicateinterface
 using a constant unary argument. | 
|  class | BoundProcedureAdapts a UnaryProcedureto theProcedureinterface
 using a constant unary argument. | 
|  class | FullyBoundFunction<T>Adapts a BinaryFunctionto theFunctioninterface
 using constant arguments. | 
|  class | FullyBoundPredicateAdapts a BinaryPredicateto theUnaryPredicateinterface
 using a constant left-side argument. | 
|  class | FullyBoundProcedureAdapts a BinaryProcedureto theProcedureinterface
 using a constant left-side argument. | 
|  class | FunctionPredicateAdapts a Boolean-valuedFunctionto thePredicateinterface. | 
|  class | FunctionProcedureAdapts a Functionto theProcedureinterface by ignoring the value returned
 by the function. | 
|  class | PredicateFunctionAdapts a Predicateto theFunctioninterface. | 
|  class | ProcedureFunction<T>Adapts a Procedureto theFunctioninterface
 by always returningnull. | 
| Uses of NullaryFunctor in org.apache.commons.functor.core | 
|---|
| Classes in org.apache.commons.functor.core that implement NullaryFunctor | |
|---|---|
|  class | Constant<T>Evaluatesto constant value. | 
|  class | LimitA predicate that returns truethe first n times it is invoked. | 
|  class | NoOpA procedure that does nothing at all. | 
|  class | OffsetA predicate that returns falsethe first n times it is invoked, andtruethereafter. | 
| Uses of NullaryFunctor in org.apache.commons.functor.core.algorithm | 
|---|
| Classes in org.apache.commons.functor.core.algorithm that implement NullaryFunctor | |
|---|---|
|  class | DoUntilDo-until algorithm (test after). | 
|  class | DoWhileDo-while algorithm (test after). | 
|  class | RecursiveEvaluationTail recursion for functions. | 
|  class | UntilDoUntil-do algorithm (test before). | 
|  class | WhileDoWhile-do algorithm (test before). | 
| Uses of NullaryFunctor in org.apache.commons.functor.core.composite | 
|---|
| Classes in org.apache.commons.functor.core.composite that implement NullaryFunctor | |
|---|---|
|  class | AbstractLoopProcedureAbstract base class for WhileDoProcedureandDoWhileProcedureused to implement loop procedures. | 
|  class | AndTeststrueiff
 none of its children testfalse. | 
|  class | ConditionalFunction<T>A Functionsimiliar to Java's "ternary"
 or "conditional" operator (? :). | 
|  class | ConditionalPredicateA Predicatesimiliar to Java's "ternary"
 or "conditional" operator (? :). | 
|  class | ConditionalProcedureA Proceduresimiliar to Java's "ternary"
 or "conditional" operator (? :). | 
|  class | DoWhileProcedureA Procedureimplementation of a while loop. | 
|  class | NotTeststo the logical inverse
 of some other predicate. | 
|  class | OrTeststrueiff
 at least one of its children testtrue. | 
|  class | SequenceA Procedurethatrunsan ordered
 sequence ofProcedures. | 
|  class | TransformedFunction<T>A Function whose result is then run through a UnaryFunction. | 
|  class | TransformedProcedureA Procedure composed of a Function whose result is then run through a UnaryProcedure. | 
|  class | WhileDoProcedureA Procedureimplementation of a while loop. | 
| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||