Class LongCollections.UnmodifiableMap<V>

java.lang.Object
io.netty.util.collection.LongCollections.UnmodifiableMap<V>
Type Parameters:
V - the value type stored in the map.
All Implemented Interfaces:
LongObjectMap<V>, Map<Long,V>
Enclosing class:
LongCollections

private static final class LongCollections.UnmodifiableMap<V> extends Object implements LongObjectMap<V>
An unmodifiable wrapper around a LongObjectMap.
  • Field Details

  • Constructor Details

  • Method Details

    • get

      public V get(long key)
      Description copied from interface: LongObjectMap
      Gets the value in the map with the specified key.
      Specified by:
      get in interface LongObjectMap<V>
      Parameters:
      key - the key whose associated value is to be returned.
      Returns:
      the value or null if the key was not found in the map.
    • put

      public V put(long key, V value)
      Description copied from interface: LongObjectMap
      Puts the given entry into the map.
      Specified by:
      put in interface LongObjectMap<V>
      Parameters:
      key - the key of the entry.
      value - the value of the entry.
      Returns:
      the previous value for this key or null if there was no previous mapping.
    • remove

      public V remove(long key)
      Description copied from interface: LongObjectMap
      Removes the entry with the specified key.
      Specified by:
      remove in interface LongObjectMap<V>
      Parameters:
      key - the key for the entry to be removed from this map.
      Returns:
      the previous value for the key, or null if there was no mapping.
    • size

      public int size()
      Specified by:
      size in interface Map<Long,V>
    • isEmpty

      public boolean isEmpty()
      Specified by:
      isEmpty in interface Map<Long,V>
    • clear

      public void clear()
      Specified by:
      clear in interface Map<Long,V>
    • containsKey

      public boolean containsKey(long key)
      Description copied from interface: LongObjectMap
      Indicates whether or not this map contains a value for the specified key.
      Specified by:
      containsKey in interface LongObjectMap<V>
    • containsValue

      public boolean containsValue(Object value)
      Specified by:
      containsValue in interface Map<Long,V>
    • containsKey

      public boolean containsKey(Object key)
      Specified by:
      containsKey in interface Map<Long,V>
    • get

      public V get(Object key)
      Specified by:
      get in interface Map<Long,V>
    • put

      public V put(Long key, V value)
      Specified by:
      put in interface Map<Long,V>
    • remove

      public V remove(Object key)
      Specified by:
      remove in interface Map<Long,V>
    • putAll

      public void putAll(Map<? extends Long,? extends V> m)
      Specified by:
      putAll in interface Map<Long,V>
    • entries

      Description copied from interface: LongObjectMap
      Gets an iterable to traverse over the primitive entries contained in this map. As an optimization, the LongObjectMap.PrimitiveEntrys returned by the
      invalid reference
      Iterator
      may change as the
      invalid reference
      Iterator
      progresses. The caller should not rely on LongObjectMap.PrimitiveEntry key/value stability.
      Specified by:
      entries in interface LongObjectMap<V>
    • keySet

      public Set<Long> keySet()
      Specified by:
      keySet in interface Map<Long,V>
    • entrySet

      public Set<Map.Entry<Long,V>> entrySet()
      Specified by:
      entrySet in interface Map<Long,V>
    • values

      public Collection<V> values()
      Specified by:
      values in interface Map<Long,V>