org.apache.commons.collections.functors

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Natural Language Processing
51.Net
52.Parser
53.PDF
54.Portal
55.Profiler
56.Project Management
57.Report
58.RSS RDF
59.Rule Engine
60.Science
61.Scripting
62.Search Engine
63.Security
64.Sevlet Container
65.Source Control
66.Swing Library
67.Template Engine
68.Test Coverage
69.Testing
70.UML
71.Web Crawler
72.Web Framework
73.Web Mail
74.Web Server
75.Web Services
76.Web Services apache cxf 2.2.6
77.Web Services AXIS2
78.Wiki Engine
79.Workflow Engines
80.XML
81.XML UI
Java Source Code / Java Documentation  » Library » Apache commons Collections 3.2.1 » org.apache.commons.collections.functors 
org.apache.commons.collections.functors

This package contains implementations of the {@link org.apache.commons.collections.Closure Closure}, {@link org.apache.commons.collections.Predicate Predicate}, {@link org.apache.commons.collections.Transformer Transformer} and {@link org.apache.commons.collections.Factory Factory} interfaces. These provide simple callbacks for processing with collections.

Java Source File NameTypeComment
AllPredicate.javaClass Predicate implementation that returns true if all the predicates return true.
AndPredicate.javaClass Predicate implementation that returns true if both the predicates return true.
AnyPredicate.javaClass Predicate implementation that returns true if any of the predicates return true.
ChainedClosure.javaClass Closure implementation that chains the specified closures together.
ChainedTransformer.javaClass Transformer implementation that chains the specified transformers together.

The input object is passed to the first transformer.

CloneTransformer.javaClass Transformer implementation that returns a clone of the input object.
ClosureTransformer.javaClass Transformer implementation that calls a Closure using the input object and then returns the input.
ConstantFactory.javaClass Factory implementation that returns the same constant each time.

No check is made that the object is immutable.

ConstantTransformer.javaClass Transformer implementation that returns the same constant each time.

No check is made that the object is immutable.

EqualPredicate.javaClass Predicate implementation that returns true if the input is the same object as the one stored in this predicate by equals.
ExceptionClosure.javaClass Closure implementation that always throws an exception.
ExceptionFactory.javaClass Factory implementation that always throws an exception.
ExceptionPredicate.javaClass Predicate implementation that always throws an exception.
ExceptionTransformer.javaClass Transformer implementation that always throws an exception.
FactoryTransformer.javaClass Transformer implementation that calls a Factory and returns the result.
FalsePredicate.javaClass Predicate implementation that always returns false.
ForClosure.javaClass Closure implementation that calls another closure n times, like a for loop.
FunctorUtils.javaClass Internal utilities for functors.
IdentityPredicate.javaClass Predicate implementation that returns true if the input is the same object as the one stored in this predicate.
IfClosure.javaClass Closure implementation acts as an if statement calling one or other closure based on a predicate.
InstanceofPredicate.javaClass Predicate implementation that returns true if the input is an instanceof the type stored in this predicate.
InstantiateFactory.javaClass Factory implementation that creates a new object instance by reflection.
InstantiateTransformer.javaClass Transformer implementation that creates a new object instance by reflection.
InvokerTransformer.javaClass Transformer implementation that creates a new object instance by reflection.
MapTransformer.javaClass Transformer implementation that returns the value held in a specified map using the input parameter as a key.
NonePredicate.javaClass Predicate implementation that returns true if none of the predicates return true.
NOPClosure.javaClass Closure implementation that does nothing.
NOPTransformer.javaClass Transformer implementation that does nothing.
NotNullPredicate.javaClass Predicate implementation that returns true if the input is not null.
NotPredicate.javaClass Predicate implementation that returns the opposite of the decorated predicate.
NullIsExceptionPredicate.javaClass Predicate implementation that throws an exception if the input is null.
NullIsFalsePredicate.javaClass Predicate implementation that returns false if the input is null.
NullIsTruePredicate.javaClass Predicate implementation that returns true if the input is null.
NullPredicate.javaClass Predicate implementation that returns true if the input is null.
OnePredicate.javaClass Predicate implementation that returns true if only one of the predicates return true.
OrPredicate.javaClass Predicate implementation that returns true if either of the predicates return true.
PredicateDecorator.javaInterface Defines a predicate that decorates one or more other predicates.
PredicateTransformer.javaClass Transformer implementation that calls a Predicate using the input object and then returns the input.
PrototypeFactory.javaClass Factory implementation that creates a new instance each time based on a prototype.
StringValueTransformer.javaClass Transformer implementation that returns the result of calling String.valueOf on the input object.
SwitchClosure.javaClass Closure implementation calls the closure whose predicate returns true, like a switch statement.
SwitchTransformer.javaClass Transformer implementation calls the transformer whose predicate returns true, like a switch statement.
TransformedPredicate.javaClass Predicate implementation that transforms the given object before invoking another Predicate.
TransformerClosure.javaClass Closure implementation that calls a Transformer using the input object and ignore the result.
TransformerPredicate.javaClass Predicate implementation that returns the result of a transformer.
TruePredicate.javaClass Predicate implementation that always returns true.
UniquePredicate.javaClass Predicate implementation that returns true the first time an object is passed into the predicate.
WhileClosure.javaClass Closure implementation that executes a closure repeatedly until a condition is met, like a do-while or while loop.
w_w___w.___j__av_a__2s__._c___o_m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.