Module io.netty5.common
Package io.netty5.util.collection

Interface LongObjectMap.PrimitiveEntry<V>

  • Type Parameters:
    V - the value type stored in the map.
    Enclosing interface:
    LongObjectMap<V>

    public static interface LongObjectMap.PrimitiveEntry<V>
    A primitive entry in the map, provided by the iterator from LongObjectMap.entries()
    • Method Summary

      All Methods
      Modifier and Type Method Description
      long key ()
      Gets the key for this entry.
      void setValue ​(V value)
      Sets the value for this entry.
      V value ()
      Gets the value for this entry.
    • Method Detail

      • key

        long key()
        Gets the key for this entry.
      • value

        V value()
        Gets the value for this entry.
      • setValue

        void setValue​(V value)
        Sets the value for this entry.