Class GenericMapMaker<K0,​V0>

  • Type Parameters:
    K0 - the base type for all key types of maps built by this map maker
    V0 - the base type for all value types of maps built by this map maker
    Direct Known Subclasses:
    MapMaker

    @Beta
    @Deprecated
    @GwtCompatible(emulated=true)
    public abstract class GenericMapMaker<K0,​V0>
    extends java.lang.Object
    Deprecated.
    This class existed only to support the generic paramterization necessary for the caching functionality in MapMaker. That functionality has been moved to CacheBuilder, which is a properly generified class and thus needs no "Generic" equivalent; simple use CacheBuilder naturally. For general migration instructions, see the MapMaker Migration Guide. This class is scheduled for removal in Guava 16.0.
    A class exactly like MapMaker, except restricted in the types of maps it can build. For the most part, you should probably just ignore the existence of this class.
    Since:
    7.0