Uses of Interface
components.set.Set

Packages that use Set
Package
Description
Provides the Set family interfaces and implementing classes.
  • Uses of Set in components.set

    Classes in components.set that implement Set
    Modifier and Type
    Class
    Description
    class 
    Set represented as a java.util.Set with implementations of primary methods.
    class 
    Set2<T>
    Set represented as a Queue of elements with implementations of primary methods.
    class 
    Set3<T>
    Set represented as a BinaryTree (maintained as a binary search tree) of elements with implementations of primary methods.
    class 
    Set4<T>
    Set represented as a hash table using Sets for the buckets, with implementations of primary methods.
    class 
    Layered implementations of secondary methods for Set.
    Methods in components.set that return Set
    Modifier and Type
    Method
    Description
    final Set<T>
    Set1L.newInstance()
     
    final Set<T>
     
    final Set<T>
     
    final Set<T>
     
    Set.remove(Set<T> s)
    Removes from this all elements of s that are also in this, leaving s unchanged, and returns the elements actually removed.
    SetSecondary.remove(Set<T> s)
     
    Methods in components.set with parameters of type Set
    Modifier and Type
    Method
    Description
    void
    Set.add(Set<T> s)
    Adds to this all elements of s that are not already in this, also removing just those elements from s.
    void
    SetSecondary.add(Set<T> s)
     
    boolean
    Set.isSubset(Set<T> s)
    Reports whether this is a subset of s.
    boolean
    SetSecondary.isSubset(Set<T> s)
     
    Set.remove(Set<T> s)
    Removes from this all elements of s that are also in this, leaving s unchanged, and returns the elements actually removed.
    SetSecondary.remove(Set<T> s)
     
    final void
    Set1L.transferFrom(Set<T> source)
     
    final void
    Set2.transferFrom(Set<T> source)
     
    final void
    Set3.transferFrom(Set<T> source)
     
    final void
    Set4.transferFrom(Set<T> source)