Interface BinaryLongMap.Entry

All Known Implementing Classes:
MultiBinaryLongMap.AbstractDelegateBinaryLongMap.DelegateEntryVisitor.WrapperEntry, MultiBinaryLongMap.MaskedBinaryLongMap.MaskedEntry, MultiBinaryLongMap.SafeEntry
Enclosing interface:
BinaryLongMap

public static interface BinaryLongMap.Entry
Represents an Entry stored in a BinaryLongMap.
  • Method Summary

    Modifier and Type
    Method
    Description
    Obtain the key.
    long
    Obtain the value associated with this entry.
    setValue(long lValue)
    Set the value associated with this entry.
  • Method Details

    • getKey

      Binary getKey()
      Obtain the key.
      Returns:
      the key as a Binary
    • getValue

      long getValue()
      Obtain the value associated with this entry.
      Returns:
      the associated value as a long
    • setValue

      BinaryLongMap.Entry setValue(long lValue)
      Set the value associated with this entry.

      Note: in some implementations, this operation may cause this Entry to be replaced with another Entry instance in the underlying representation.

      Parameters:
      lValue - the value to associate with this entry
      Returns:
      an BinaryLongMap.Entry with the new value, which may or may not be the same BinaryLongMap.Entry as this