Class MapIndexProxy<K,​V>

  • Type Parameters:
    K - the type of keys in this map
    V - the type of values in this map
    All Implemented Interfaces:
    MapIndex<K,​V>, StorageIndex

    public final class MapIndexProxy<K,​V>
    extends AbstractNativeProxy
    implements MapIndex<K,​V>
    A MapIndex is an index that maps keys to values. A map cannot contain duplicate keys; each key corresponds to at most one value.

    The map implementation does not permit null keys and values.

    The "destructive" methods of the map, i.e., the one that change the map contents, are specified to throw UnsupportedOperationException if the map has been created with a read-only database access.

    All method arguments are non-null by default.

    This class is not thread-safe and its instances shall not be shared between threads.

    When the access goes out of scope, this map is destroyed. Subsequent use of the closed map is prohibited and will result in IllegalStateException.

    See Also:
    Access
    • Method Detail

      • newInstance

        public static <K,​V> MapIndexProxy<K,​V> newInstance​(IndexAddress address,
                                                                       AbstractAccess access,
                                                                       com.exonum.binding.common.serialization.Serializer<K> keySerializer,
                                                                       com.exonum.binding.common.serialization.Serializer<V> valueSerializer)
        Creates a new MapIndexProxy.

        Warning: do not invoke this method from service code, use Access.getMap(IndexAddress, Serializer, Serializer).

        Type Parameters:
        K - the type of keys in the map
        V - the type of values in the map
        Parameters:
        address - an index address
        access - a database access. Must be valid. If an access is read-only, "destructive" operations are not permitted.
        keySerializer - a serializer of keys
        valueSerializer - a serializer of values
        Throws:
        IllegalStateException - if the access is not valid
        IllegalArgumentException - if the name is empty
        See Also:
        StandardSerializers
      • containsKey

        public boolean containsKey​(K key)
        Description copied from interface: MapIndex
        Returns true if this map contains a mapping for the specified key.
        Specified by:
        containsKey in interface MapIndex<K,​V>
      • put

        public void put​(K key,
                        V value)
        Description copied from interface: MapIndex
        Puts a new key-value pair into the map. If this map already contains a mapping for the specified key, overwrites the old value with the specified value.
        Specified by:
        put in interface MapIndex<K,​V>
        Parameters:
        key - a storage key
        value - a storage value to associate with the key
      • putAll

        public void putAll​(Map<? extends K,​? extends V> sourceMap)
        Description copied from interface: MapIndex
        Puts all key-value pairs from the given map into this map. Equivalent to a sequence of individual MapIndex.put(K, V) operations.
        Specified by:
        putAll in interface MapIndex<K,​V>
        Parameters:
        sourceMap - a map to put into this one
      • get

        public V get​(K key)
        Description copied from interface: MapIndex
        Returns the value associated with the specified key, or null if there is no mapping for the key.
        Specified by:
        get in interface MapIndex<K,​V>
        Parameters:
        key - a storage key
        Returns:
        the value mapped to the specified key, or null if this map contains no mapping for the key.
      • remove

        public void remove​(K key)
        Description copied from interface: MapIndex
        Removes the value mapped to the specified key from the map. If there is no such mapping, has no effect.
        Specified by:
        remove in interface MapIndex<K,​V>
        Parameters:
        key - a storage key
      • keys

        public Iterator<K> keys()
        Description copied from interface: MapIndex
        Returns an iterator over the map keys. The keys are ordered in lexicographical order.
        Specified by:
        keys in interface MapIndex<K,​V>
      • values

        public Iterator<V> values()
        Description copied from interface: MapIndex
        Returns an iterator over the map values. The values are ordered in lexicographical order of keys.
        Specified by:
        values in interface MapIndex<K,​V>
      • entries

        public Iterator<com.exonum.binding.common.collect.MapEntry<K,​V>> entries()
        Description copied from interface: MapIndex
        Returns an iterator over the map entries. The entries are ordered by keys in lexicographical order.
        Specified by:
        entries in interface MapIndex<K,​V>
      • clear

        public void clear()
        Description copied from interface: MapIndex
        Removes all of the key-value pairs from the map. The map will be empty after this method returns.
        Specified by:
        clear in interface MapIndex<K,​V>
      • getAddress

        public IndexAddress getAddress()
        Description copied from interface: StorageIndex
        Returns the index address: its identifier in the database.

        Please note that the implementations may return either relative or absolute address. The address is not required to be equal to the one passed to the index constructor.

        Specified by:
        getAddress in interface StorageIndex