|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.xml.utils.ObjectPool
public class ObjectPool
Pool of object of a given type to pick from to help memory usage
Constructor Summary | |
---|---|
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 |
Method Summary | |
---|---|
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 |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
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()
Method Detail |
---|
public java.lang.Object getInstanceIfFree()
public java.lang.Object getInstance()
public void freeInstance(java.lang.Object obj)
obj
- Object to add.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |