Package | Description |
---|---|
javolution.util.service |
Service interfaces to be implemented by
javolution.util.*
collections and collections views. |
Modifier and Type | Field and Description |
---|---|
static CollectionService.IterationController |
CollectionService.IterationController.PARALLEL
A parallel
iteration controller allowing parallel traversal over all the
collection elements. |
static CollectionService.IterationController |
CollectionService.IterationController.SEQUENTIAL
A sequential
iteration controller over all the collection elements in the normal
iterative order. |
Modifier and Type | Method and Description |
---|---|
void |
CollectionService.forEach(Consumer<? super E> consumer,
CollectionService.IterationController controller)
Traverses the elements of this collection.
|
boolean |
CollectionService.removeIf(Predicate<? super E> filter,
CollectionService.IterationController controller)
Removes from this collection the elements matching the specified
predicate.
|
Copyright © 2005-2013 Javolution. All Rights Reserved.