org.apache.commons.collections.functors

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 geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Library » Apache common Collections » 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.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.