Uses of Interface
components.set.SetKernel

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

    Subinterfaces of SetKernel in components.set
    Modifier and Type
    Interface
    Description
    interface 
    Set<T>
    SetKernel enhanced with secondary methods.
    Classes in components.set that implement SetKernel
    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.