Package | Description |
---|---|
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 . |
Modifier and Type | Field and Description |
---|---|
private Pool<byte[]> |
StreamUtilImpl.byteArrayPool |
private Pool<char[]> |
StreamUtilImpl.charArrayPool |
Modifier and Type | Method and Description |
---|---|
protected Pool<byte[]> |
StreamUtilImpl.getByteArrayPool()
This method gets the byte-array
Pool used to transfer streams. |
protected Pool<char[]> |
StreamUtilImpl.getCharArrayPool()
|
protected abstract Pool<BUFFER> |
StreamUtilImpl.BaseTransferrer.getPool()
This method gets the
Pool to retrieve buffers. |
protected Pool<byte[]> |
StreamUtilImpl.StreamTransferrer.getPool() |
protected Pool<char[]> |
StreamUtilImpl.ReaderTransferrer.getPool() |
Modifier and Type | Method and Description |
---|---|
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 . |
Modifier and Type | Interface and Description |
---|---|
interface |
ByteArrayPool
This is the interface for a
Pool of byte[] . |
interface |
CharArrayPool
This is the interface for a
Pool of char[] . |
Modifier and Type | Class and Description |
---|---|
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. |
Modifier and Type | Class and Description |
---|---|
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–2016 mmm-Team. All rights reserved.