See: Description
| Class | Description |
|---|---|
| BeanProvider |
Uses
Class.newInstance() to instantiate an object. |
| CloningProvider |
Merely calls
clone() (reflectively) on the given Cloneable object. |
| ConstantProvider |
Always returns the same object.
|
| NullProvider |
Always returns null.
|
| ProviderDecorator |
Returns the result of the inner
provider. |
| SingletonProvider |
Wraps another object provider, making sure to only call it once, returning the value returned from the wrapped
provider on all subsequent invocations.
|
This package contains some general-use ObjectProvider implementations.
Copyright © 2005-2013 Apache Software Foundation. All Rights Reserved.