public class ObjectPool
extends java.lang.Object
implements java.io.Serializable
Constructor and Description |
---|
ObjectPool()
Constructor ObjectPool
|
ObjectPool(java.lang.Class type)
Constructor ObjectPool
|
ObjectPool(java.lang.Class type,
int size)
Constructor ObjectPool
|
ObjectPool(java.lang.String className)
Constructor ObjectPool
|
Modifier and Type | Method and Description |
---|---|
void |
freeInstance(java.lang.Object obj)
Add an instance of the given object to the pool
|
java.lang.Object |
getInstance()
Get an instance of the given object in this pool
|
java.lang.Object |
getInstanceIfFree()
Get an instance of the given object in this pool if available
|
public ObjectPool(java.lang.Class type)
type
- Type of objects for this poolpublic ObjectPool(java.lang.String className)
className
- Fully qualified name of the type of objects for this pool.public ObjectPool(java.lang.Class type, int size)
type
- Type of objects for this poolsize
- Size of vector to allocatepublic ObjectPool()
public java.lang.Object getInstanceIfFree()
public java.lang.Object getInstance()
public void freeInstance(java.lang.Object obj)
obj
- Object to add.Copyright © 2006 Apache XML Project. All Rights Reserved.