E - The type of element managed by the collection.public abstract class OpenCollection<E> extends Collection<E> implements Dynamic<E>
| Constructor and Description |
|---|
OpenCollection() |
| Modifier and Type | Method and Description |
|---|---|
int |
addElements(E[] elements)
This method adds an array of new elements to the collection.
|
int |
addElements(java.lang.Iterable<? extends E> elements)
This method adds a list of new elements to the collection.
|
int |
removeElements(E[] elements)
This method removes the elements in the specified array from the collection.
|
int |
removeElements(java.lang.Iterable<? extends E> elements)
This method removes the specified elements from the collection.
|
compareTo, containsAllElementsIn, containsAnyElementsIn, containsElement, equals, hashCode, isEmpty, iterator, normalizedIndex, toArrayaddSerializableClass, addSerializableClass, copy, toExposedString, toString, toStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitaddElement, removeElementcreateDefaultIterator, getElementAtIndex, getElementsInRange, getIndexOfElement, removeAllElementsgetNumberOfElementspublic int addElements(E[] elements)
DynamicaddElements in interface Dynamic<E>elements - The array of new elements to be added.public int addElements(java.lang.Iterable<? extends E> elements)
DynamicaddElements in interface Dynamic<E>elements - The list of new elements to be added.public int removeElements(E[] elements)
DynamicremoveElements in interface Dynamic<E>elements - The array of elements to be removed from the collection.public int removeElements(java.lang.Iterable<? extends E> elements)
DynamicremoveElements in interface Dynamic<E>elements - The list of elements to be removed from the collection.Copyright © 2015 Crater Dog Technologies(TM). All rights reserved.