Class CrudMapAdapter.Immutable<Key,​Value>

    • Constructor Detail

      • Immutable

        public Immutable()
    • Method Detail

      • delete

        public final void delete​(Key key)
        Description copied from interface: CrudMapAdapter
        Removes the mapping for the given key.
        Specified by:
        delete in interface CrudMapAdapter<Key,​Value>
        Parameters:
        key - Key to disassociate with any values.
      • set

        public final void set​(Key key,
                              Value value)
        Description copied from interface: CrudMapAdapter
        Associates a value with the given key.
        Specified by:
        set in interface CrudMapAdapter<Key,​Value>
        Parameters:
        key - Key to associate with a different value.
        value - Value to associate with the key, never null.