Package gaiasky.util.ds
Class RouletteList<T>
java.lang.Object
gaiasky.util.ds.RouletteList<T>
- All Implemented Interfaces:
Iterable<T>
,Collection<T>
A structure composed of a set of collections of a given size in which
additions happen to the next list in the roulette before it is spun.
-
Constructor Summary
ConstructorDescriptionRouletteList
(int numLists, int initialCollectionSize) Constructs a roulette list with a given size. -
Method Summary
Modifier and TypeMethodDescriptionboolean
boolean
addAll
(Collection<? extends T> c) void
clear()
boolean
boolean
containsAll
(Collection<?> c) getList
(int index) Returns the list for the given index.int
boolean
isEmpty()
iterator()
boolean
boolean
removeAll
(Collection<?> c) boolean
retainAll
(Collection<?> c) int
size()
T[]
toArray()
<T> T[]
toArray
(T[] a) <T> T[]
toArrayConcrete
(T[] a) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Collection
equals, hashCode, parallelStream, removeIf, spliterator, stream, toArray
-
Constructor Details
-
RouletteList
public RouletteList(int numLists, int initialCollectionSize) Constructs a roulette list with a given size.- Parameters:
numLists
- The number of collections.initialCollectionSize
- The initial size of each collection.
-
-
Method Details
-
getList
Returns the list for the given index. If the index is negative or greater than the number of lists in the roulette, it asserts an exception.- Parameters:
index
- The index.- Returns:
- The list at the given index in this roulette.
-
getNumCollections
public int getNumCollections() -
size
public int size()- Specified by:
size
in interfaceCollection<T>
-
isEmpty
public boolean isEmpty()- Specified by:
isEmpty
in interfaceCollection<T>
-
contains
- Specified by:
contains
in interfaceCollection<T>
-
iterator
-
toArray
- Specified by:
toArray
in interfaceCollection<T>
-
toArray
public <T> T[] toArray(T[] a) - Specified by:
toArray
in interfaceCollection<T>
-
toArrayConcrete
public <T> T[] toArrayConcrete(T[] a) -
add
- Specified by:
add
in interfaceCollection<T>
-
remove
- Specified by:
remove
in interfaceCollection<T>
-
containsAll
- Specified by:
containsAll
in interfaceCollection<T>
-
addAll
- Specified by:
addAll
in interfaceCollection<T>
-
removeAll
- Specified by:
removeAll
in interfaceCollection<T>
-
retainAll
- Specified by:
retainAll
in interfaceCollection<T>
-
clear
public void clear()- Specified by:
clear
in interfaceCollection<T>
-