T
- Element typepublic final class Shuffled<T> extends CollectionEnvelope<T>
Pay attention that shuffling will happen on each operation
with the collection. Every time you touch it, it will fetch the
entire list from the encapsulated object and sort it. If you
want to avoid that "side-effect", decorate it with
StickyList
.
There is no thread-safety guarantee.
StickyList
Constructor and Description |
---|
Shuffled(Collection<T> src)
Ctor.
|
Shuffled(Iterable<T> src)
Ctor.
|
Shuffled(Iterator<T> src)
Ctor.
|
Shuffled(T... src)
Ctor.
|
Modifier and Type | Method and Description |
---|---|
void |
add(int index,
T element) |
boolean |
addAll(int index,
Collection<? extends T> items) |
boolean |
equals(Object obj) |
T |
get(int index) |
int |
hashCode() |
int |
indexOf(Object item) |
int |
lastIndexOf(Object item) |
ListIterator<T> |
listIterator() |
ListIterator<T> |
listIterator(int index) |
T |
remove(int index) |
T |
set(int index,
T element) |
List<T> |
subList(int start,
int end) |
String |
toString() |
add, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
add, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, replaceAll, retainAll, size, sort, spliterator, toArray, toArray
parallelStream, removeIf, stream
@SafeVarargs public Shuffled(T... src)
src
- The underlying collectionpublic Shuffled(Collection<T> src)
src
- Sourcepublic final boolean addAll(int index, Collection<? extends T> items)
public final int lastIndexOf(Object item)
lastIndexOf
in interface List<T>
public final ListIterator<T> listIterator()
listIterator
in interface List<T>
public final ListIterator<T> listIterator(int index)
listIterator
in interface List<T>
public boolean equals(Object obj)
public int hashCode()
public String toString()
toString
in class CollectionEnvelope<T>
Copyright © 2017–2018 Cactoos. All rights reserved.