Module org.hsqldb

Interface Collection<E>

All Known Subinterfaces:
List<E>, Set<E>
All Known Implementing Classes:
ArrayListIdentity, HashSet, HsqlArrayList, HsqlDeque, OrderedHashSet

public interface Collection<E>
A basic collection of values.
Since:
1.7.2
Author:
Fred Toussi (fredt@users dot sourceforge.net)
  • Method Details

    • size

      int size()
    • isEmpty

      boolean isEmpty()
    • contains

      boolean contains(Object o)
    • iterator

      Iterator<E> iterator()
    • add

      boolean add(E o)
    • remove

      boolean remove(Object o)
    • addAll

      boolean addAll(Collection<? extends E> c)
    • clear

      void clear()