Class MinimalSet<E>

  • All Implemented Interfaces:
    Iterable<E>, Collection<E>, Set<E>

    @GwtCompatible
    public class MinimalSet<E>
    extends MinimalCollection<E>
    implements Set<E>
    A simplistic set which implements the bare minimum so that it can be used in tests without relying on any specific Set implementations. Slow. Explicitly allows null elements so that they can be used in the testers.
    Author:
    Regina O'Dell