Serialized Form


Package org.apache.commons.functor.adapter

Class org.apache.commons.functor.adapter.BinaryFunctionBinaryPredicate extends java.lang.Object implements Serializable

Serialized Fields

function

BinaryFunction<L,R,T> function
The BinaryFunction I'm wrapping.

Class org.apache.commons.functor.adapter.BinaryFunctionBinaryProcedure extends java.lang.Object implements Serializable

Serialized Fields

function

BinaryFunction<L,R,T> function
The BinaryFunction I'm wrapping.

Class org.apache.commons.functor.adapter.BinaryPredicateBinaryFunction extends java.lang.Object implements Serializable

Serialized Fields

predicate

BinaryPredicate<L,R> predicate
The BinaryPredicate I'm wrapping.

Class org.apache.commons.functor.adapter.BinaryProcedureBinaryFunction extends java.lang.Object implements Serializable

Serialized Fields

procedure

BinaryProcedure<L,R> procedure
The BinaryProcedure I'm wrapping.

Class org.apache.commons.functor.adapter.BoundFunction extends java.lang.Object implements Serializable

Serialized Fields

helper

org.apache.commons.functor.adapter.BoundFunction.Helper<A> helper

Class org.apache.commons.functor.adapter.BoundPredicate extends java.lang.Object implements Serializable

Serialized Fields

predicate

UnaryPredicate<A> predicate
The UnaryPredicate I'm wrapping.


param

java.lang.Object param
The parameter to pass to that predicate.

Class org.apache.commons.functor.adapter.BoundProcedure extends java.lang.Object implements Serializable

Serialized Fields

procedure

UnaryProcedure<A> procedure
The UnaryProcedure I'm wrapping.


param

java.lang.Object param
The parameter to pass to that procedure.

Class org.apache.commons.functor.adapter.FunctionPredicate extends java.lang.Object implements Serializable

Serialized Fields

function

Function<T> function
The Function I'm wrapping.

Class org.apache.commons.functor.adapter.FunctionProcedure extends java.lang.Object implements Serializable

Serialized Fields

function

Function<T> function
The Function I'm wrapping.

Class org.apache.commons.functor.adapter.FunctionUnaryFunction extends java.lang.Object implements Serializable

Serialized Fields

function

Function<T> function
The Function I'm wrapping.

Class org.apache.commons.functor.adapter.IgnoreLeftFunction extends java.lang.Object implements Serializable

Serialized Fields

function

UnaryFunction<A,T> function
The UnaryFunction I'm wrapping.

Class org.apache.commons.functor.adapter.IgnoreLeftPredicate extends java.lang.Object implements Serializable

Serialized Fields

predicate

UnaryPredicate<A> predicate
The UnaryPredicate I'm wrapping.

Class org.apache.commons.functor.adapter.IgnoreLeftProcedure extends java.lang.Object implements Serializable

Serialized Fields

procedure

UnaryProcedure<A> procedure
The UnaryProcedure I'm wrapping.

Class org.apache.commons.functor.adapter.IgnoreRightFunction extends java.lang.Object implements Serializable

Serialized Fields

function

UnaryFunction<A,T> function
The UnaryFunction I'm wrapping.

Class org.apache.commons.functor.adapter.IgnoreRightPredicate extends java.lang.Object implements Serializable

Serialized Fields

predicate

UnaryPredicate<A> predicate
The UnaryPredicate I'm wrapping.

Class org.apache.commons.functor.adapter.IgnoreRightProcedure extends java.lang.Object implements Serializable

Serialized Fields

procedure

UnaryProcedure<A> procedure
The UnaryProcedure I'm wrapping.

Class org.apache.commons.functor.adapter.LeftBoundFunction extends java.lang.Object implements Serializable

Serialized Fields

function

BinaryFunction<L,R,T> function
The BinaryFunction I'm wrapping.


param

java.lang.Object param
The parameter to pass to that function.

Class org.apache.commons.functor.adapter.LeftBoundPredicate extends java.lang.Object implements Serializable

Serialized Fields

predicate

BinaryPredicate<L,R> predicate
The BinaryPredicate I'm wrapping.


param

java.lang.Object param
The parameter to pass to that predicate.

Class org.apache.commons.functor.adapter.LeftBoundProcedure extends java.lang.Object implements Serializable

Serialized Fields

procedure

BinaryProcedure<L,R> procedure
The BinaryProcedure I'm wrapping.


param

java.lang.Object param
The parameter to pass to that procedure.

Class org.apache.commons.functor.adapter.PredicateFunction extends java.lang.Object implements Serializable

Serialized Fields

predicate

Predicate predicate
The Predicate I'm wrapping.

Class org.apache.commons.functor.adapter.PredicateUnaryPredicate extends java.lang.Object implements Serializable

Serialized Fields

predicate

Predicate predicate
The Predicate I'm wrapping.

Class org.apache.commons.functor.adapter.ProcedureFunction extends java.lang.Object implements Serializable

Serialized Fields

procedure

Procedure procedure
The Procedure I'm wrapping.

Class org.apache.commons.functor.adapter.ProcedureUnaryProcedure extends java.lang.Object implements Serializable

Serialized Fields

procedure

Procedure procedure
The Procedure I'm wrapping.

Class org.apache.commons.functor.adapter.RightBoundFunction extends java.lang.Object implements Serializable

Serialized Fields

function

BinaryFunction<L,R,T> function
The BinaryFunction I'm wrapping.


param

java.lang.Object param
The parameter to pass to that function.

Class org.apache.commons.functor.adapter.RightBoundPredicate extends java.lang.Object implements Serializable

Serialized Fields

predicate

BinaryPredicate<L,R> predicate
The BinaryPredicate I'm wrapping.


param

java.lang.Object param
The parameter to pass to that predicate.

Class org.apache.commons.functor.adapter.RightBoundProcedure extends java.lang.Object implements Serializable

Serialized Fields

procedure

BinaryProcedure<L,R> procedure
The BinaryProcedure I'm wrapping.


param

java.lang.Object param
The parameter to pass to that procedure.

Class org.apache.commons.functor.adapter.UnaryFunctionUnaryPredicate extends java.lang.Object implements Serializable

Serialized Fields

function

UnaryFunction<A,T> function
The UnaryFunction I'm wrapping.

Class org.apache.commons.functor.adapter.UnaryFunctionUnaryProcedure extends java.lang.Object implements Serializable

Serialized Fields

function

UnaryFunction<A,T> function
The UnaryFunction I'm wrapping.

Class org.apache.commons.functor.adapter.UnaryPredicateUnaryFunction extends java.lang.Object implements Serializable

Serialized Fields

predicate

UnaryPredicate<A> predicate
The UnaryPredicate I'm wrapping.

Class org.apache.commons.functor.adapter.UnaryProcedureUnaryFunction extends java.lang.Object implements Serializable

Serialized Fields

procedure

UnaryProcedure<A> procedure
The UnaryProcedure I'm wrapping.


Package org.apache.commons.functor.core

Class org.apache.commons.functor.core.Constant extends java.lang.Object implements Serializable

Serialized Fields

value

java.lang.Object value

Class org.apache.commons.functor.core.Identity extends java.lang.Object implements Serializable

Class org.apache.commons.functor.core.IsEqual extends java.lang.Object implements Serializable

Class org.apache.commons.functor.core.IsInstance extends java.lang.Object implements Serializable

Class org.apache.commons.functor.core.IsNotEqual extends java.lang.Object implements Serializable

Class org.apache.commons.functor.core.IsNotNull extends java.lang.Object implements Serializable

Class org.apache.commons.functor.core.IsNull extends java.lang.Object implements Serializable

Class org.apache.commons.functor.core.NoOp extends java.lang.Object implements Serializable


Package org.apache.commons.functor.core.algorithm

Class org.apache.commons.functor.core.algorithm.DoUntil extends org.apache.commons.functor.core.algorithm.PredicatedLoop implements Serializable

Class org.apache.commons.functor.core.algorithm.DoWhile extends org.apache.commons.functor.core.algorithm.PredicatedLoop implements Serializable

Class org.apache.commons.functor.core.algorithm.FindWithinGenerator extends java.lang.Object implements Serializable

Serialized Fields

useIfNone

boolean useIfNone

ifNone

java.lang.Object ifNone

Class org.apache.commons.functor.core.algorithm.FoldLeft extends java.lang.Object implements Serializable

Serialized Fields

function

BinaryFunction<L,R,T> function

Class org.apache.commons.functor.core.algorithm.FoldRight extends java.lang.Object implements Serializable

Serialized Fields

function

BinaryFunction<L,R,T> function

Class org.apache.commons.functor.core.algorithm.GeneratorContains extends java.lang.Object implements Serializable

Class org.apache.commons.functor.core.algorithm.IndexOfInGenerator extends java.lang.Object implements Serializable

Class org.apache.commons.functor.core.algorithm.InPlaceTransform extends java.lang.Object implements Serializable

Class org.apache.commons.functor.core.algorithm.RecursiveEvaluation extends java.lang.Object implements Serializable

Serialized Fields

function

Function<T> function

functionType

java.lang.Class<T> functionType

Class org.apache.commons.functor.core.algorithm.RemoveMatching extends java.lang.Object implements Serializable

Class org.apache.commons.functor.core.algorithm.RetainMatching extends java.lang.Object implements Serializable

Serialized Fields

removeMatching

RemoveMatching<T> removeMatching

Class org.apache.commons.functor.core.algorithm.UntilDo extends org.apache.commons.functor.core.algorithm.PredicatedLoop implements Serializable

Class org.apache.commons.functor.core.algorithm.WhileDo extends org.apache.commons.functor.core.algorithm.PredicatedLoop implements Serializable


Package org.apache.commons.functor.core.collection

Class org.apache.commons.functor.core.collection.IsElementOf extends java.lang.Object implements Serializable

Class org.apache.commons.functor.core.collection.IsEmpty extends java.lang.Object implements Serializable

Class org.apache.commons.functor.core.collection.Size extends java.lang.Object implements Serializable


Package org.apache.commons.functor.core.comparator

Class org.apache.commons.functor.core.comparator.ComparatorFunction extends java.lang.Object implements Serializable

Serialized Fields

comparator

java.util.Comparator<T> comparator

Class org.apache.commons.functor.core.comparator.IsEquivalent extends java.lang.Object implements Serializable

Serialized Fields

comparator

java.util.Comparator<T> comparator

Class org.apache.commons.functor.core.comparator.IsGreaterThan extends java.lang.Object implements Serializable

Serialized Fields

comparator

java.util.Comparator<T> comparator

Class org.apache.commons.functor.core.comparator.IsGreaterThanOrEqual extends java.lang.Object implements Serializable

Serialized Fields

comparator

java.util.Comparator<T> comparator

Class org.apache.commons.functor.core.comparator.IsLessThan extends java.lang.Object implements Serializable

Serialized Fields

comparator

java.util.Comparator<T> comparator

Class org.apache.commons.functor.core.comparator.IsLessThanOrEqual extends java.lang.Object implements Serializable

Serialized Fields

comparator

java.util.Comparator<T> comparator

Class org.apache.commons.functor.core.comparator.IsNotEquivalent extends java.lang.Object implements Serializable

Serialized Fields

comparator

java.util.Comparator<T> comparator

Class org.apache.commons.functor.core.comparator.IsWithinRange extends java.lang.Object implements Serializable

Serialized Fields

min

java.lang.Comparable<T> min
The minimum value of the range.


max

java.lang.Comparable<T> max
The maximum value of the range.

Class org.apache.commons.functor.core.comparator.Max extends java.lang.Object implements Serializable

Serialized Fields

comparator

java.util.Comparator<T> comparator

Class org.apache.commons.functor.core.comparator.Min extends java.lang.Object implements Serializable

Serialized Fields

comparator

java.util.Comparator<T> comparator

Package org.apache.commons.functor.core.composite

Class org.apache.commons.functor.core.composite.AbstractLoopProcedure extends java.lang.Object implements Serializable

Serialized Fields

condition

Predicate condition

action

Procedure action

Class org.apache.commons.functor.core.composite.And extends org.apache.commons.functor.core.composite.BasePredicateList implements Serializable

Class org.apache.commons.functor.core.composite.BinaryAnd extends org.apache.commons.functor.core.composite.BaseBinaryPredicateList<L,R> implements Serializable

Class org.apache.commons.functor.core.composite.BinaryCompositeBinaryFunction extends java.lang.Object implements Serializable

Serialized Fields

helper

org.apache.commons.functor.core.composite.BinaryCompositeBinaryFunction.Helper<G,H> helper

Class org.apache.commons.functor.core.composite.BinaryNot extends java.lang.Object implements Serializable

Serialized Fields

predicate

BinaryPredicate<L,R> predicate

Class org.apache.commons.functor.core.composite.BinaryOr extends org.apache.commons.functor.core.composite.BaseBinaryPredicateList<L,R> implements Serializable

Class org.apache.commons.functor.core.composite.BinarySequence extends java.lang.Object implements Serializable

Serialized Fields

list

java.util.List<E> list

Class org.apache.commons.functor.core.composite.CompositeUnaryFunction extends java.lang.Object implements Serializable

Serialized Fields

function

UnaryFunction<A,T> function

Class org.apache.commons.functor.core.composite.CompositeUnaryPredicate extends java.lang.Object implements Serializable

Serialized Fields

function

CompositeUnaryFunction<A,T> function

Class org.apache.commons.functor.core.composite.CompositeUnaryProcedure extends java.lang.Object implements Serializable

Serialized Fields

function

CompositeUnaryFunction<A,T> function

Class org.apache.commons.functor.core.composite.ConditionalBinaryFunction extends java.lang.Object implements Serializable

Serialized Fields

ifPred

BinaryPredicate<L,R> ifPred

thenFunc

BinaryFunction<L,R,T> thenFunc

elseFunc

BinaryFunction<L,R,T> elseFunc

Class org.apache.commons.functor.core.composite.ConditionalBinaryPredicate extends java.lang.Object implements Serializable

Serialized Fields

ifPred

BinaryPredicate<L,R> ifPred

thenPred

BinaryPredicate<L,R> thenPred

elsePred

BinaryPredicate<L,R> elsePred

Class org.apache.commons.functor.core.composite.ConditionalBinaryProcedure extends java.lang.Object implements Serializable

Serialized Fields

ifPred

BinaryPredicate<L,R> ifPred

thenProc

BinaryProcedure<L,R> thenProc

elseProc

BinaryProcedure<L,R> elseProc

Class org.apache.commons.functor.core.composite.ConditionalFunction extends java.lang.Object implements Serializable

Serialized Fields

ifPred

Predicate ifPred

thenFunc

Function<T> thenFunc

elseFunc

Function<T> elseFunc

Class org.apache.commons.functor.core.composite.ConditionalPredicate extends java.lang.Object implements Serializable

Serialized Fields

ifPred

Predicate ifPred

thenPred

Predicate thenPred

elsePred

Predicate elsePred

Class org.apache.commons.functor.core.composite.ConditionalProcedure extends java.lang.Object implements Serializable

Serialized Fields

ifPred

Predicate ifPred

thenProc

Procedure thenProc

elseProc

Procedure elseProc

Class org.apache.commons.functor.core.composite.ConditionalUnaryFunction extends java.lang.Object implements Serializable

Serialized Fields

ifPred

UnaryPredicate<A> ifPred

thenFunc

UnaryFunction<A,T> thenFunc

elseFunc

UnaryFunction<A,T> elseFunc

Class org.apache.commons.functor.core.composite.ConditionalUnaryPredicate extends java.lang.Object implements Serializable

Serialized Fields

ifPred

UnaryPredicate<A> ifPred

thenPred

UnaryPredicate<A> thenPred

elsePred

UnaryPredicate<A> elsePred

Class org.apache.commons.functor.core.composite.ConditionalUnaryProcedure extends java.lang.Object implements Serializable

Serialized Fields

ifPred

UnaryPredicate<A> ifPred

thenProc

UnaryProcedure<A> thenProc

elseProc

UnaryProcedure<A> elseProc

Class org.apache.commons.functor.core.composite.DoWhileProcedure extends AbstractLoopProcedure implements Serializable

Class org.apache.commons.functor.core.composite.Not extends java.lang.Object implements Serializable

Serialized Fields

predicate

Predicate predicate

Class org.apache.commons.functor.core.composite.Or extends org.apache.commons.functor.core.composite.BasePredicateList implements Serializable

Class org.apache.commons.functor.core.composite.Sequence extends java.lang.Object implements Serializable

Serialized Fields

list

java.util.List<E> list

Class org.apache.commons.functor.core.composite.TransformedBinaryFunction extends java.lang.Object implements Serializable

Serialized Fields

helper

org.apache.commons.functor.core.composite.TransformedBinaryFunction.Helper<X> helper

Class org.apache.commons.functor.core.composite.TransformedBinaryProcedure extends java.lang.Object implements Serializable

Serialized Fields

helper

org.apache.commons.functor.core.composite.TransformedBinaryProcedure.Helper<X> helper

Class org.apache.commons.functor.core.composite.TransformedFunction extends java.lang.Object implements Serializable

Serialized Fields

helper

org.apache.commons.functor.core.composite.TransformedFunction.Helper<X> helper

Class org.apache.commons.functor.core.composite.TransformedProcedure extends java.lang.Object implements Serializable

Serialized Fields

helper

org.apache.commons.functor.core.composite.TransformedProcedure.Helper<X> helper

Class org.apache.commons.functor.core.composite.TransposedFunction extends java.lang.Object implements Serializable

Serialized Fields

function

BinaryFunction<L,R,T> function

Class org.apache.commons.functor.core.composite.TransposedPredicate extends java.lang.Object implements Serializable

Serialized Fields

predicate

BinaryPredicate<L,R> predicate

Class org.apache.commons.functor.core.composite.TransposedProcedure extends java.lang.Object implements Serializable

Serialized Fields

procedure

BinaryProcedure<L,R> procedure

Class org.apache.commons.functor.core.composite.UnaryAnd extends org.apache.commons.functor.core.composite.BaseUnaryPredicateList<A> implements Serializable

Class org.apache.commons.functor.core.composite.UnaryCompositeBinaryFunction extends java.lang.Object implements Serializable

Serialized Fields

helper

org.apache.commons.functor.core.composite.UnaryCompositeBinaryFunction.Helper<G,H> helper

Class org.apache.commons.functor.core.composite.UnaryCompositeBinaryPredicate extends java.lang.Object implements Serializable

Serialized Fields

helper

org.apache.commons.functor.core.composite.UnaryCompositeBinaryPredicate.Helper<G,H> helper

Class org.apache.commons.functor.core.composite.UnaryNot extends java.lang.Object implements Serializable

Serialized Fields

predicate

UnaryPredicate<A> predicate

Class org.apache.commons.functor.core.composite.UnaryOr extends org.apache.commons.functor.core.composite.BaseUnaryPredicateList<A> implements Serializable

Class org.apache.commons.functor.core.composite.UnarySequence extends java.lang.Object implements Serializable

Serialized Fields

list

java.util.List<E> list

Class org.apache.commons.functor.core.composite.WhileDoProcedure extends AbstractLoopProcedure implements Serializable


Package org.apache.commons.functor.generator

Class org.apache.commons.functor.generator.GenerateUntil$1 extends java.lang.Object implements Serializable

Class org.apache.commons.functor.generator.GenerateWhile$1 extends java.lang.Object implements Serializable

Class org.apache.commons.functor.generator.TransformedGenerator$1 extends java.lang.Object implements Serializable

Class org.apache.commons.functor.generator.UntilGenerate$1 extends java.lang.Object implements Serializable

Class org.apache.commons.functor.generator.WhileGenerate$1 extends java.lang.Object implements Serializable


Package org.apache.commons.functor.generator.util

Class org.apache.commons.functor.generator.util.CollectionTransformer$1 extends java.lang.Object implements Serializable



Copyright © 2003-2008 The Apache Software Foundation. All Rights Reserved.