Java org.apache.commons.collections ClosureUtils fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.collections ClosureUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.collections ClosureUtils.

The text is from its open source code.

Method

ClosurechainedClosure(Closure[] closures)
Create a new Closure that calls each closure in turn, passing the result into the next closure.
ClosurechainedClosure(Collection closures)
Create a new Closure that calls each closure in turn, passing the result into the next closure.
ClosureexceptionClosure()
Gets a Closure that always throws an exception.
ClosureforClosure(int count, Closure closure)
Creates a Closure that will call the closure count times.
ClosureifClosure(Predicate predicate, Closure trueClosure, Closure falseClosure)
Create a new Closure that calls one of two closures depending on the specified predicate.
ClosureinvokerClosure(String methodName, Class[] paramTypes, Object[] args)
Creates a Closure that will invoke a specific method on the closure's input object by reflection.
ClosurenopClosure()
Gets a Closure that will do nothing.