Uses of Interface
components.map.MapKernel

Packages that use MapKernel
Package
Description
Provides the Map family interfaces and implementing classes.
  • Uses of MapKernel in components.map

    Subinterfaces of MapKernel in components.map
    Modifier and Type
    Interface
    Description
    interface 
    Map<K,V>
    MapKernel enhanced with secondary methods.
    Classes in components.map that implement MapKernel
    Modifier and Type
    Class
    Description
    class 
    Map1L<K,V>
    Map represented as a java.util.Map with implementations of primary methods.
    class 
    Map2<K,V>
    Map represented as a Queue of pairs with implementations of primary methods.
    class 
    Map3<K,V>
    Map represented as a BinaryTree (maintained as a binary search tree) of pairs with implementations of primary methods.
    class 
    Map4<K,V>
    Map represented as a hash table using Maps for the buckets, with implementations of primary methods.
    class 
    Layered implementations of secondary methods for Map.