public class EventUnderlyingCollection extends Object implements Collection<Object>
Constructor and Description |
---|
EventUnderlyingCollection(Collection<EventBean> events) |
Modifier and Type | Method and Description |
---|---|
boolean |
add(Object o) |
boolean |
addAll(Collection<? extends Object> c) |
void |
clear() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> c) |
boolean |
isEmpty() |
Iterator<Object> |
iterator() |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
boolean |
retainAll(Collection<?> c) |
int |
size() |
Object[] |
toArray() |
<T> T[] |
toArray(T[] arr) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
equals, hashCode, parallelStream, removeIf, spliterator, stream
public EventUnderlyingCollection(Collection<EventBean> events)
public boolean containsAll(Collection<?> c)
containsAll
in interface Collection<Object>
public <T> T[] toArray(T[] arr)
toArray
in interface Collection<Object>
public Object[] toArray()
toArray
in interface Collection<Object>
public boolean contains(Object o)
contains
in interface Collection<Object>
public boolean isEmpty()
isEmpty
in interface Collection<Object>
public int size()
size
in interface Collection<Object>
public void clear()
clear
in interface Collection<Object>
public boolean retainAll(Collection<?> c)
retainAll
in interface Collection<Object>
public boolean removeAll(Collection<?> c)
removeAll
in interface Collection<Object>
public boolean addAll(Collection<? extends Object> c)
addAll
in interface Collection<Object>
public boolean remove(Object o)
remove
in interface Collection<Object>
public boolean add(Object o)
add
in interface Collection<Object>