Interface BoundedList<B extends Bounded>
-
- Type Parameters:
B
- the type of item stored in the list
- All Superinterfaces:
Bounded
,Collection<B>
,Iterable<B>
,List<B>
- All Known Implementing Classes:
NodeList
public interface BoundedList<B extends Bounded> extends Bounded, List<B>
interface for a list of Bounded items. The bounding box of the list is the union of the list contents bounding boxes- Author:
- Tom Nelson
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
recalculateBounds()
recompute the bounding box for the list-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
-
-