Uses of Interface
org.hsqldb.lib.Collection
Packages that use Collection
-
Uses of Collection in org.hsqldb.lib
Subinterfaces of Collection in org.hsqldb.libModifier and TypeInterfaceDescriptioninterface
List<E>
Interface for List collections.interface
Set<E>
Marker interface for a Collection that is a Set of values.Classes in org.hsqldb.lib that implement CollectionModifier and TypeClassDescriptionclass
Extends HsqlArrayList.class
HashSet<E>
This class does not store null keys.class
Intended as an asynchronous alternative to Vector.class
HsqlDeque<E>
AList<E>
that also implementsDeque<E>
andQueue<E>
and methods for usage as stack.class
A list which is also a Set which maintains the inserted order of elements and allows access by index.Methods in org.hsqldb.lib that return CollectionModifier and TypeMethodDescriptionHashMap.values()
IntKeyHashMap.values()
IntKeyHashMapConcurrent.values()
IntKeyIntValueHashMap.values()
IntKeyLongValueHashMap.values()
IntValueHashMap.values()
LongKeyHashMap.values()
LongKeyIntValueHashMap.values()
LongKeyLongValueHashMap.values()
LongValueHashMap.values()
Map.values()
MultiValueHashMap.values()
OrderedLongKeyHashMap.values()
Methods in org.hsqldb.lib with parameters of type CollectionModifier and TypeMethodDescriptionboolean
Collection.addAll
(Collection<? extends E> c) boolean
HashSet.addAll
(Collection<? extends E> c) returns true if any element is addedboolean
HsqlDeque.addAll
(int index, Collection c) boolean
IntHashSet.addAll
(Collection<? extends Integer> col) boolean
HashSet.containsAll
(Collection<?> col) boolean
HsqlDeque.containsAll
(Collection c) boolean
IntHashSet.containsAll
(Collection<?> c) boolean
HashSet.removeAll
(Collection<?> c) returns true if all were removedboolean
HsqlDeque.removeAll
(Collection c) boolean
IntHashSet.removeAll
(Collection<?> c) boolean
HashSet.retainAll
(Collection<?> c) boolean
HsqlDeque.retainAll
(Collection c) boolean
IntHashSet.retainAll
(Collection<?> c)