- bufferByteBuf buffer() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- bufferByteBuf buffer(int initialCapacity) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- bufferByteBuf buffer(int initialCapacity, int maxCapacity) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- calculateNewCapacityint calculateNewCapacity(int minNewCapacity, int maxCapacity) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- compositeBufferCompositeByteBuf compositeBuffer() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- compositeBufferCompositeByteBuf compositeBuffer(int maxNumComponents) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- compositeDirectBufferCompositeByteBuf compositeDirectBuffer() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- compositeDirectBufferCompositeByteBuf compositeDirectBuffer(int maxNumComponents) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- compositeHeapBufferCompositeByteBuf compositeHeapBuffer() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- compositeHeapBufferCompositeByteBuf compositeHeapBuffer(int maxNumComponents) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- directBufferByteBuf directBuffer() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- directBufferByteBuf directBuffer(int initialCapacity) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- directBufferByteBuf directBuffer(int initialCapacity, int maxCapacity) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- heapBufferByteBuf heapBuffer() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- heapBufferByteBuf heapBuffer(int initialCapacity) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- heapBufferByteBuf heapBuffer(int initialCapacity, int maxCapacity) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- ioBufferByteBuf ioBuffer() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- ioBufferByteBuf ioBuffer(int initialCapacity) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- ioBufferByteBuf ioBuffer(int initialCapacity, int maxCapacity) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- newDirectBufferByteBuf newDirectBuffer(int initialCapacity, int maxCapacity) 
- Create a direct {@link ByteBuf} with the given initialCapacity and maxCapacity. 
- newHeapBufferByteBuf newHeapBuffer(int initialCapacity, int maxCapacity) 
- Create a heap {@link ByteBuf} with the given initialCapacity and maxCapacity. 
- toStringstring toString() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- bufferByteBuf buffer() 
- Allocate a {@link ByteBuf}. If it is a direct or heap buffer
depends on the actual implementation. 
- bufferByteBuf buffer(int initialCapacity) 
- Allocate a {@link ByteBuf} with the given initial capacity.
If it is a direct or heap buffer depends on the actual implementation. 
- bufferByteBuf buffer(int initialCapacity, int maxCapacity) 
- Allocate a {@link ByteBuf} with the given initial capacity and the given
maximal capacity. If it is a direct or heap buffer depends on the actual
implementation. 
- ioBufferByteBuf ioBuffer() 
- Allocate a {@link ByteBuf}, preferably a direct buffer which is suitable for I/O. 
- ioBufferByteBuf ioBuffer(int initialCapacity) 
- Allocate a {@link ByteBuf}, preferably a direct buffer which is suitable for I/O. 
- ioBufferByteBuf ioBuffer(int initialCapacity, int maxCapacity) 
- Allocate a {@link ByteBuf}, preferably a direct buffer which is suitable for I/O. 
- heapBufferByteBuf heapBuffer() 
- Allocate a heap {@link ByteBuf}. 
- heapBufferByteBuf heapBuffer(int initialCapacity) 
- Allocate a heap {@link ByteBuf} with the given initial capacity. 
- heapBufferByteBuf heapBuffer(int initialCapacity, int maxCapacity) 
- Allocate a heap {@link ByteBuf} with the given initial capacity and the given
maximal capacity. 
- directBufferByteBuf directBuffer() 
- Allocate a direct {@link ByteBuf}. 
- directBufferByteBuf directBuffer(int initialCapacity) 
- Allocate a direct {@link ByteBuf} with the given initial capacity. 
- directBufferByteBuf directBuffer(int initialCapacity, int maxCapacity) 
- Allocate a direct {@link ByteBuf} with the given initial capacity and the given
maximal capacity. 
- compositeBufferCompositeByteBuf compositeBuffer() 
- Allocate a {@link CompositeByteBuf}.
If it is a direct or heap buffer depends on the actual implementation. 
- compositeBufferCompositeByteBuf compositeBuffer(int maxNumComponents) 
- Allocate a {@link CompositeByteBuf} with the given maximum number of components that can be stored in it.
If it is a direct or heap buffer depends on the actual implementation. 
- compositeHeapBufferCompositeByteBuf compositeHeapBuffer() 
- Allocate a heap {@link CompositeByteBuf}. 
- compositeHeapBufferCompositeByteBuf compositeHeapBuffer(int maxNumComponents) 
- Allocate a heap {@link CompositeByteBuf} with the given maximum number of components that can be stored in it. 
- compositeDirectBufferCompositeByteBuf compositeDirectBuffer() 
- Allocate a direct {@link CompositeByteBuf}. 
- compositeDirectBufferCompositeByteBuf compositeDirectBuffer(int maxNumComponents) 
- Allocate a direct {@link CompositeByteBuf} with the given maximum number of components that can be stored in it. 
- isDirectBufferPooledbool isDirectBufferPooled() 
- Returns {@code true} if direct {@link ByteBuf}'s are pooled 
- calculateNewCapacityint calculateNewCapacity(int minNewCapacity, int maxCapacity) 
- Calculate the new capacity of a {@link ByteBuf} that is used when a {@link ByteBuf} needs to expand by the
{@code minNewCapacity} with {@code maxCapacity} as upper-bound. 
Skeletal {@link ByteBufAllocator} implementation to extend.