Interface ImmutableLongObjectMap<V>

All Superinterfaces:
ImmutablePrimitiveObjectMap<V>, InternalIterable<V>, Iterable<V>, LongObjectMap<V>, PrimitiveObjectMap<V>, RichIterable<V>
All Known Implementing Classes:
AbstractImmutableLongObjectMap

public interface ImmutableLongObjectMap<V> extends LongObjectMap<V>, ImmutablePrimitiveObjectMap<V>
This file was automatically generated from template file immutablePrimitiveObjectMap.stg.
Since:
3.0.
  • Method Details

    • tap

      ImmutableLongObjectMap<V> tap(Procedure<? super V> procedure)
      Description copied from interface: RichIterable
      Executes the Procedure for each element in the iterable and returns this.

      Example using a Java 8 lambda expression:

       RichIterable<Person> tapped =
           people.tap(person -> LOGGER.info(person.getName()));
       

      Example using an anonymous inner class:

       RichIterable<Person> tapped =
           people.tap(new Procedure<Person>()
           {
               public void value(Person person)
               {
                   LOGGER.info(person.getName());
               }
           });
       
      Specified by:
      tap in interface LongObjectMap<V>
      Specified by:
      tap in interface RichIterable<V>
      See Also:
    • select

      ImmutableLongObjectMap<V> select(LongObjectPredicate<? super V> predicate)
      Description copied from interface: LongObjectMap
      Return a copy of this map containing only the key/value pairs that match the predicate.
      Specified by:
      select in interface LongObjectMap<V>
      Parameters:
      predicate - the predicate to determine which key/value pairs in this map should be included in the returned map
      Returns:
      a copy of this map with the matching key/value pairs
    • reject

      ImmutableLongObjectMap<V> reject(LongObjectPredicate<? super V> predicate)
      Description copied from interface: LongObjectMap
      Return a copy of this map containing only the key/value pairs that do not match the predicate.
      Specified by:
      reject in interface LongObjectMap<V>
      Parameters:
      predicate - the predicate to determine which key/value pairs in this map should be excluded from the returned map
      Returns:
      a copy of this map without the matching key/value pairs
    • newWithKeyValue

      ImmutableLongObjectMap<V> newWithKeyValue(long key, V value)
      Copy this map, associate the value with the key (replacing the value if one already exists for key), and return the copy as new immutable map. A copy is always made even if key is already associated with value.
      Parameters:
      key - the key to add
      value - the value to associate with the key in the copy
      Returns:
      an immutable copy of this map with value associated with key
    • newWithoutKey

      ImmutableLongObjectMap<V> newWithoutKey(long key)
      Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.
      Parameters:
      key - the key to remove
      Returns:
      an immutable copy of this map with key removed
    • newWithoutAllKeys

      ImmutableLongObjectMap<V> newWithoutAllKeys(LongIterable keys)
      Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.
      Parameters:
      keys - the keys to remove
      Returns:
      an immutable copy of this map with all keys in keys removed
    • flipUniqueValues

      ImmutableObjectLongMap<V> flipUniqueValues()
      Description copied from interface: LongObjectMap
      Return the ObjectLongMap that is obtained by flipping the direction of this map and making the associations from value to key.
      Specified by:
      flipUniqueValues in interface LongObjectMap<V>