Frames | No Frames |
Constructors with parameter type org.apache.commons.collections.Factory | |
Constructor that wraps (not copies). | |
Constructor that wraps (not copies). |
Methods with parameter type org.apache.commons.collections.Factory | |
Map | Factory method to create a lazily instantiated map. |
SortedMap | Factory method to create a lazily instantiated sorted map. |
Classes implementing org.apache.commons.collections.Factory | |
class | Factory implementation that returns the same constant each time. |
class | Factory implementation that always throws an exception. |
class | Factory implementation that creates a new object instance by reflection. |
Constructors with parameter type org.apache.commons.collections.Factory | |
Constructor that performs no validation. |
Fields of type org.apache.commons.collections.Factory | |
Factory | Singleton predicate instance |
Factory | Returns null each time |
Methods with parameter type org.apache.commons.collections.Factory | |
Transformer | Factory method that performs validation. |
Methods with return type org.apache.commons.collections.Factory | |
Factory | Gets the factory. |
Factory | Factory returning the singleton instance. |
Factory | InstantiateFactory.getInstance(Class classToInstantiate, Class[] paramTypes, Object[] args) Factory method that performs validation. |
Factory | ConstantFactory.getInstance(Object constantToReturn) Factory method that performs validation. |
Factory | PrototypeFactory.getInstance(Object prototype) Factory method that performs validation. |
Constructors with parameter type org.apache.commons.collections.Factory | |
Constructor that wraps (not copies). |
Fields of type org.apache.commons.collections.Factory | |
Factory | The factory to use to lazily instantiate the objects |
Methods with parameter type org.apache.commons.collections.Factory | |
List | Factory method to create a lazily instantiating list. |
Methods with parameter type org.apache.commons.collections.Factory | |
Transformer | Creates a Transformer that calls a Factory each time the transformer is used. |
List | Returns a "lazy" list whose elements will be created on demand. |
Map | Returns a "lazy" map whose values will be created on demand. |
SortedMap | Returns a "lazy" sorted map whose values will be created on demand. |
Methods with return type org.apache.commons.collections.Factory | |
Factory | FactoryUtils.constantFactory(Object constantToReturn) Creates a Factory that will return the same object each time the factory
is used. |
Factory | Gets a Factory that always throws an exception. |
Factory | FactoryUtils.instantiateFactory(Class classToInstantiate) Creates a Factory that can create objects of a specific type using
a no-args constructor. |
Factory | FactoryUtils.instantiateFactory(Class classToInstantiate, Class[] paramTypes, Object[] args) Creates a Factory that can create objects of a specific type using
the arguments specified to this method. |
Factory | Gets a Factory that will return null each time the factory is used. |
Factory | FactoryUtils.prototypeFactory(Object prototype) Creates a Factory that will return a clone of the same prototype object
each time the factory is used. |