Frames | No Frames |
Classes implementing org.apache.commons.collections.Buffer | |
class | An implementation of the Stack API that is based on an
ArrayList instead of a Vector , so it is not
synchronized to protect against multi-threaded access. |
class | Binary heap implementation of PriorityQueue . |
class | The BoundedFifoBuffer is a very efficient implementation of
Buffer that does not alter the size of the buffer at runtime. |
class | UnboundedFifoBuffer is a very efficient buffer implementation. |
Fields of type org.apache.commons.collections.Buffer | |
Buffer | An empty unmodifiable buffer. |
Methods with parameter type org.apache.commons.collections.Buffer | |
Buffer | Returns a synchronized buffer backed by the given buffer that will
block on Buffer.get() and Buffer.remove() operations. |
Buffer | Returns a synchronized buffer backed by the given buffer that will
block on Buffer.get() and Buffer.remove() operations
until timeout expires. |
Buffer | Returns a synchronized buffer backed by the given buffer that will
block on Buffer.add(Object) and
Buffer.addAll(java.util.Collection) until enough object(s) are
removed from the buffer to allow the object(s) to be added and still
maintain the maximum size. |
Buffer | Returns a synchronized buffer backed by the given buffer that will
block on Buffer.add(Object) and
Buffer.addAll(java.util.Collection) until enough object(s) are
removed from the buffer to allow the object(s) to be added and still
maintain the maximum size or the timeout expires. |
Buffer | Returns a predicated (validating) buffer backed by the given buffer. |
Buffer | Returns a synchronized buffer backed by the given buffer. |
Buffer | Returns a transformed buffer backed by the given buffer. |
Buffer | Returns a typed buffer backed by the given buffer. |
Buffer | Returns an unmodifiable buffer backed by the given buffer. |
Methods with return type org.apache.commons.collections.Buffer | |
Buffer | Returns a synchronized buffer backed by the given buffer that will
block on Buffer.get() and Buffer.remove() operations. |
Buffer | Returns a synchronized buffer backed by the given buffer that will
block on Buffer.get() and Buffer.remove() operations
until timeout expires. |
Buffer | Returns a synchronized buffer backed by the given buffer that will
block on Buffer.add(Object) and
Buffer.addAll(java.util.Collection) until enough object(s) are
removed from the buffer to allow the object(s) to be added and still
maintain the maximum size. |
Buffer | Returns a synchronized buffer backed by the given buffer that will
block on Buffer.add(Object) and
Buffer.addAll(java.util.Collection) until enough object(s) are
removed from the buffer to allow the object(s) to be added and still
maintain the maximum size or the timeout expires. |
Buffer | Returns a predicated (validating) buffer backed by the given buffer. |
Buffer | Returns a synchronized buffer backed by the given buffer. |
Buffer | Returns a transformed buffer backed by the given buffer. |
Buffer | Returns a typed buffer backed by the given buffer. |
Buffer | Returns an unmodifiable buffer backed by the given buffer. |
Classes implementing org.apache.commons.collections.Buffer | |
class | Decorates another Buffer to provide additional behaviour. |
class | |
class | Decorates another Buffer to ensure a fixed maximum size. |
class | The BoundedFifoBuffer is a very efficient implementation of
Buffer that is of a fixed size. |
class | CircularFifoBuffer is a first in first out buffer with a fixed size that
replaces its oldest element if full. |
class | Decorates another Buffer to validate that additions
match a specified predicate. |
class | Binary heap implementation of Buffer that provides for
removal based on Comparator ordering. |
class | Decorates another Buffer to synchronize its behaviour
for a multi-threaded environment. |
class | Decorates another Buffer to transform objects that are added. |
class | UnboundedFifoBuffer is a very efficient implementation of
Buffer that can grow to any size. |
class | Decorates another Buffer to ensure it can't be altered. |
Constructors with parameter type org.apache.commons.collections.Buffer | |
Constructor that wraps (not copies). | |
Constructor that wraps (not copies). | |
Constructor that wraps (not copies). | |
Constructor that wraps (not copies) another buffer, making it bounded
waiting only up to a maximum amount of time. | |
Constructor that wraps (not copies). | |
Constructor that wraps (not copies). | |
Constructor that wraps (not copies). | |
Constructor that wraps (not copies). |
Methods with parameter type org.apache.commons.collections.Buffer | |
Buffer | Factory method to create a blocking buffer. |
Buffer | Factory method to create a synchronized buffer. |
Buffer | Factory method to create an unmodifiable buffer. |
Buffer | Factory method to create a typed list. |
BoundedBuffer | Factory method to create a bounded buffer. |
BoundedBuffer | Factory method to create a bounded buffer that blocks for a maximum
amount of time. |
Buffer | Factory method to create a blocking buffer with a timeout value. |
Buffer | Factory method to create a predicated (validating) buffer. |
Buffer | Factory method to create a transforming buffer. |
Methods with return type org.apache.commons.collections.Buffer | |
Buffer | Factory method to create a blocking buffer. |
Buffer | Factory method to create a synchronized buffer. |
Buffer | Factory method to create an unmodifiable buffer. |
Buffer | Factory method to create a typed list. |
Buffer | Factory method to create a blocking buffer with a timeout value. |
Buffer | Factory method to create a predicated (validating) buffer. |
Buffer | Factory method to create a transforming buffer. |
Buffer | Gets the buffer being decorated. |
Buffer | Gets the buffer being decorated. |
Buffer | Gets the buffer being decorated. |
Buffer | Gets the decorated buffer. |