Uses of Interface
net.sf.mmm.util.pool.api.Pool

Packages that use Pool
net.sf.mmm.util.io.base Contains public implementations that help to read and write data, process bytes, etc. 
net.sf.mmm.util.pool.api Provides the API for a generic pool. 
net.sf.mmm.util.pool.base Contains base-implementations of the Pool-Util API
net.sf.mmm.util.pool.impl Contains some implementations of the Pool-Util API
 

Uses of Pool in net.sf.mmm.util.io.base
 

Fields in net.sf.mmm.util.io.base declared as Pool
private  Pool<byte[]> StreamUtilImpl.byteArrayPool
           
private  Pool<char[]> StreamUtilImpl.charArrayPool
           
 

Methods in net.sf.mmm.util.io.base that return Pool
protected  Pool<byte[]> StreamUtilImpl.getByteArrayPool()
          This method gets the byte-array Pool used to transfer streams.
protected  Pool<char[]> StreamUtilImpl.getCharArrayPool()
          This method gets the char-array Pool used to transfer Readers and Writers.
 

Methods in net.sf.mmm.util.io.base with parameters of type Pool
 void StreamUtilImpl.setByteArrayPool(Pool<byte[]> byteArrayPool)
          This method sets the byte-array-pool.
 void StreamUtilImpl.setCharArrayPool(Pool<char[]> charArrayPool)
          This method sets the char-array-pool.
 

Uses of Pool in net.sf.mmm.util.pool.api
 

Subinterfaces of Pool in net.sf.mmm.util.pool.api
 interface ByteArrayPool
          This is the interface for a Pool of byte[].
 interface CharArrayPool
          This is the interface for a Pool of char[].
 

Uses of Pool in net.sf.mmm.util.pool.base
 

Classes in net.sf.mmm.util.pool.base that implement Pool
 class AbstractNoPool<E>
          This is the abstract base implementation of a dummy Pool that is actually NOT pooling at all.
 class AbstractPool<E>
          This is the abstract base implementation of the Pool interface.
 class NoByteArrayPool
          This is a dummy pool for byte-arrays.
 class NoCharArrayPool
          This is a dummy pool for char-arrays.
 

Uses of Pool in net.sf.mmm.util.pool.impl
 

Classes in net.sf.mmm.util.pool.impl that implement Pool
 class ByteArrayPoolImpl
          This is the default implementation of the Pool interface for byte-arrays.
 class CharArrayPoolImpl
          This is the default implementation of the Pool interface for char-arrays.
 



Copyright © 2001-2010 mmm-Team. All Rights Reserved.