Interface IntObjectMap.Entry<V>

Enclosing class:
IntObjectMap<V>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface
public static interface IntObjectMap.Entry<V>
Interface used to iterate over the entries.
  • Method Summary

    Modifier and Type Method Description
    boolean entry​(int k, V v)
    Gives an entry.
  • Method Details

    • entry

      boolean entry​(int k, V v)
      Gives an entry.
      Parameters:
      k - the key
      v - the value
      Returns:
      true to continue the iteration.