Package org.ujmp.core.collections
Class AbstractCollection<E>
java.lang.Object
org.ujmp.core.collections.AbstractCollection<E>
- All Implemented Interfaces:
Serializable
,Iterable<E>
,Collection<E>
- Direct Known Subclasses:
AbstractTable
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
addAll
(Collection<? extends E> c) boolean
containsAll
(Collection<?> c) boolean
isEmpty()
boolean
removeAll
(Collection<?> c) Object[]
toArray()
<T> T[]
toArray
(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
add, clear, contains, equals, hashCode, iterator, parallelStream, remove, removeIf, retainAll, size, spliterator, stream
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
AbstractCollection
public AbstractCollection()
-
-
Method Details
-
addAll
- Specified by:
addAll
in interfaceCollection<E>
-
containsAll
- Specified by:
containsAll
in interfaceCollection<E>
-
isEmpty
public boolean isEmpty()- Specified by:
isEmpty
in interfaceCollection<E>
-
toArray
- Specified by:
toArray
in interfaceCollection<E>
-
toArray
public <T> T[] toArray(T[] a) - Specified by:
toArray
in interfaceCollection<E>
-
removeAll
- Specified by:
removeAll
in interfaceCollection<E>
-