Class Byte2IntMaps

java.lang.Object
it.unimi.dsi.fastutil.bytes.Byte2IntMaps

public final class Byte2IntMaps
extends java.lang.Object
A class providing static methods and objects that do useful things with type-specific maps.
See Also:
Collections
  • Nested Class Summary

    Nested Classes
    Modifier and Type Class Description
    static class  Byte2IntMaps.EmptyMap
    An immutable class representing an empty type-specific map.
    static class  Byte2IntMaps.Singleton
    An immutable class representing a type-specific singleton map.
    static class  Byte2IntMaps.SynchronizedMap
    A synchronized wrapper class for maps.
    static class  Byte2IntMaps.UnmodifiableMap
    An unmodifiable wrapper class for maps.
  • Field Summary

    Fields
    Modifier and Type Field Description
    static Byte2IntMaps.EmptyMap EMPTY_MAP
    An empty type-specific map (immutable).
  • Method Summary

    Modifier and Type Method Description
    static void fastForEach​(Byte2IntMap map, java.util.function.Consumer<? super Byte2IntMap.Entry> consumer)
    Iterates quickly, if possible, on the entry set of the provided map.
    static it.unimi.dsi.fastutil.objects.ObjectIterable<Byte2IntMap.Entry> fastIterable​(Byte2IntMap map)
    Returns an iterable yielding an iterator that will be fast, if possible, on the entry set of the provided map.
    static it.unimi.dsi.fastutil.objects.ObjectIterator<Byte2IntMap.Entry> fastIterator​(Byte2IntMap map)
    Returns an iterator that will be fast, if possible, on the entry set of the provided map.
    static Byte2IntMap singleton​(byte key, int value)
    Returns a type-specific immutable map containing only the specified pair.
    static Byte2IntMap singleton​(java.lang.Byte key, java.lang.Integer value)
    Returns a type-specific immutable map containing only the specified pair.
    static Byte2IntMap synchronize​(Byte2IntMap m)
    Returns a synchronized type-specific map backed by the given type-specific map.
    static Byte2IntMap synchronize​(Byte2IntMap m, java.lang.Object sync)
    Returns a synchronized type-specific map backed by the given type-specific map, using an assigned object to synchronize.
    static Byte2IntMap unmodifiable​(Byte2IntMap m)
    Returns an unmodifiable type-specific map backed by the given type-specific map.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • EMPTY_MAP

      public static final Byte2IntMaps.EmptyMap EMPTY_MAP
      An empty type-specific map (immutable). It is serializable and cloneable.
  • Method Details

    • fastIterator

      public static it.unimi.dsi.fastutil.objects.ObjectIterator<Byte2IntMap.Entry> fastIterator​(Byte2IntMap map)
      Returns an iterator that will be fast, if possible, on the entry set of the provided map.
      Parameters:
      map - a map from which we will try to extract a (fast) iterator on the entry set.
      Returns:
      an iterator on the entry set of the given map that will be fast, if possible.
      Since:
      8.0.0
    • fastForEach

      public static void fastForEach​(Byte2IntMap map, java.util.function.Consumer<? super Byte2IntMap.Entry> consumer)
      Iterates quickly, if possible, on the entry set of the provided map.
      Parameters:
      map - a map on which we will try to iterate quickly.
      consumer - the consumer that will be passed to Byte2IntMap.FastEntrySet.fastForEach(Consumer), if possible, or to Iterable.forEach(Consumer).
      Since:
      8.1.0
    • fastIterable

      public static it.unimi.dsi.fastutil.objects.ObjectIterable<Byte2IntMap.Entry> fastIterable​(Byte2IntMap map)
      Returns an iterable yielding an iterator that will be fast, if possible, on the entry set of the provided map.
      Parameters:
      map - a map from which we will try to extract an iterable yielding a (fast) iterator on the entry set.
      Returns:
      an iterable yielding an iterator on the entry set of the given map that will be fast, if possible.
      Since:
      8.0.0
    • singleton

      public static Byte2IntMap singleton​(byte key, int value)
      Returns a type-specific immutable map containing only the specified pair. The returned map is serializable and cloneable.

      Note that albeit the returned map is immutable, its default return value may be changed.

      Parameters:
      key - the only key of the returned map.
      value - the only value of the returned map.
      Returns:
      a type-specific immutable map containing just the pair &lt;key,value&gt;.
    • singleton

      public static Byte2IntMap singleton​(java.lang.Byte key, java.lang.Integer value)
      Returns a type-specific immutable map containing only the specified pair. The returned map is serializable and cloneable.

      Note that albeit the returned map is immutable, its default return value may be changed.

      Parameters:
      key - the only key of the returned map.
      value - the only value of the returned map.
      Returns:
      a type-specific immutable map containing just the pair &lt;key,value&gt;.
    • synchronize

      public static Byte2IntMap synchronize​(Byte2IntMap m)
      Returns a synchronized type-specific map backed by the given type-specific map.
      Parameters:
      m - the map to be wrapped in a synchronized map.
      Returns:
      a synchronized view of the specified map.
      See Also:
      Collections.synchronizedMap(Map)
    • synchronize

      public static Byte2IntMap synchronize​(Byte2IntMap m, java.lang.Object sync)
      Returns a synchronized type-specific map backed by the given type-specific map, using an assigned object to synchronize.
      Parameters:
      m - the map to be wrapped in a synchronized map.
      sync - an object that will be used to synchronize the access to the map.
      Returns:
      a synchronized view of the specified map.
      See Also:
      Collections.synchronizedMap(Map)
    • unmodifiable

      public static Byte2IntMap unmodifiable​(Byte2IntMap m)
      Returns an unmodifiable type-specific map backed by the given type-specific map.
      Parameters:
      m - the map to be wrapped in an unmodifiable map.
      Returns:
      an unmodifiable view of the specified map.
      See Also:
      Collections.unmodifiableMap(Map)