public class ImmutableCollection<E> extends Object implements Collection<E>
ImmutableCollection class.
| Constructor and Description |
|---|
ImmutableCollection(Collection<E> parent)
Constructor for ImmutableCollection.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(E o) |
void |
add(int index,
E element)
add.
|
boolean |
addAll(Collection<? extends E> c) |
boolean |
addAll(int index,
Collection<? extends E> c)
addAll.
|
void |
clear() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> c) |
boolean |
isEmpty() |
Iterator<E> |
iterator() |
E |
remove(int index)
remove.
|
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
boolean |
retainAll(Collection<?> c) |
E |
set(int index,
E element)
set.
|
int |
size() |
Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitequals, hashCode, parallelStream, removeIf, spliterator, streampublic ImmutableCollection(Collection<E> parent)
Constructor for ImmutableCollection.
parent - a Collection object.public boolean add(E o)
add in interface Collection<E>public void add(int index,
E element)
add.
index - a int.element - a E object.public boolean addAll(Collection<? extends E> c)
addAll in interface Collection<E>public boolean addAll(int index,
Collection<? extends E> c)
addAll.
index - a int.c - a Collection object.public void clear()
clear in interface Collection<E>public boolean contains(Object o)
contains in interface Collection<E>public boolean containsAll(Collection<?> c)
containsAll in interface Collection<E>public boolean isEmpty()
isEmpty in interface Collection<E>public boolean remove(Object o)
remove in interface Collection<E>public E remove(int index)
remove.
index - a int.public boolean removeAll(Collection<?> c)
removeAll in interface Collection<E>public boolean retainAll(Collection<?> c)
retainAll in interface Collection<E>public E set(int index, E element)
set.
index - a int.element - a E object.public int size()
size in interface Collection<E>public Object[] toArray()
toArray in interface Collection<E>public <T> T[] toArray(T[] a)
toArray in interface Collection<E>Copyright © 2016. All Rights Reserved.