Package co.aikar.util

Class LoadingIntMap<V>

java.lang.Object
it.unimi.dsi.fastutil.ints.AbstractInt2ObjectFunction<V>
it.unimi.dsi.fastutil.ints.AbstractInt2ObjectMap<V>
it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap<V>
co.aikar.util.LoadingIntMap<V>
Type Parameters:
V - Value
All Implemented Interfaces:
it.unimi.dsi.fastutil.Function<Integer,V>, it.unimi.dsi.fastutil.Hash, it.unimi.dsi.fastutil.ints.Int2ObjectFunction<V>, it.unimi.dsi.fastutil.ints.Int2ObjectMap<V>, Serializable, Cloneable, Function<Integer,V>, IntFunction<V>, Map<Integer,V>

@Deprecated(forRemoval=true) public class LoadingIntMap<V> extends it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap<V>
Deprecated, for removal: This API element is subject to removal in a future version.
Allows you to pass a Loader function that when a key is accessed that doesn't exist, automatically loads the entry into the map by calling the loader Function. .get() Will only return null if the Loader can return null. You may pass any backing Map to use. This class is not thread safe and should be wrapped with Collections.synchronizedMap on the OUTSIDE of the LoadingMap if needed. Do not wrap the backing map with Collections.synchronizedMap.
See Also:
  • Nested Class Summary Link icon

    Nested Classes
    Modifier and Type
    Class
    Description
    static class 
    Deprecated, for removal: This API element is subject to removal in a future version.
    Due to java stuff, you will need to cast it to (Function) for some cases

    Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.ints.AbstractInt2ObjectMap Link icon

    it.unimi.dsi.fastutil.ints.AbstractInt2ObjectMap.BasicEntry<V>, it.unimi.dsi.fastutil.ints.AbstractInt2ObjectMap.BasicEntrySet<V>

    Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.Hash Link icon

    it.unimi.dsi.fastutil.Hash.Strategy<K>

    Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.ints.Int2ObjectMap Link icon

    it.unimi.dsi.fastutil.ints.Int2ObjectMap.Entry<V>, it.unimi.dsi.fastutil.ints.Int2ObjectMap.FastEntrySet<V>
  • Field Summary Link icon

    Fields inherited from class it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap Link icon

    containsNullKey, entries, f, key, keys, mask, maxFill, minN, n, size, value, values

    Fields inherited from class it.unimi.dsi.fastutil.ints.AbstractInt2ObjectFunction Link icon

    defRetValue

    Fields inherited from interface it.unimi.dsi.fastutil.Hash Link icon

    DEFAULT_GROWTH_FACTOR, DEFAULT_INITIAL_SIZE, DEFAULT_LOAD_FACTOR, FAST_LOAD_FACTOR, FREE, OCCUPIED, PRIMES, REMOVED, VERY_FAST_LOAD_FACTOR
  • Constructor Summary Link icon

    Constructors
    Constructor
    Description
    LoadingIntMap(int expectedSize, float loadFactor, @NotNull Function<Integer,V> loader)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    LoadingIntMap(int expectedSize, @NotNull Function<Integer,V> loader)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    get(int key)
    Deprecated, for removal: This API element is subject to removal in a future version.
     

    Methods inherited from class it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap Link icon

    clear, clone, compute, computeIfAbsent, computeIfAbsent, computeIfPresent, containsKey, containsValue, ensureCapacity, getOrDefault, hashCode, int2ObjectEntrySet, isEmpty, keySet, merge, put, putAll, putIfAbsent, rehash, remove, remove, replace, replace, shiftKeys, size, trim, trim, values

    Methods inherited from class it.unimi.dsi.fastutil.ints.AbstractInt2ObjectMap Link icon

    equals, toString

    Methods inherited from class it.unimi.dsi.fastutil.ints.AbstractInt2ObjectFunction Link icon

    defaultReturnValue, defaultReturnValue

    Methods inherited from class java.lang.Object Link icon

    finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface it.unimi.dsi.fastutil.Function Link icon

    apply

    Methods inherited from interface java.util.function.Function Link icon

    andThen

    Methods inherited from interface it.unimi.dsi.fastutil.ints.Int2ObjectFunction Link icon

    andThenByte, andThenChar, andThenDouble, andThenFloat, andThenInt, andThenLong, andThenObject, andThenReference, andThenShort, apply, compose, composeByte, composeChar, composeDouble, composeFloat, composeInt, composeLong, composeObject, composeReference, composeShort

    Methods inherited from interface it.unimi.dsi.fastutil.ints.Int2ObjectMap Link icon

    computeIfAbsentPartial, containsKey, defaultReturnValue, defaultReturnValue, entrySet, forEach, get, getOrDefault, put, remove

    Methods inherited from interface java.util.Map Link icon

    compute, computeIfAbsent, computeIfPresent, merge, putIfAbsent, remove, replace, replace, replaceAll
  • Constructor Details Link icon

    • LoadingIntMap Link icon

      public LoadingIntMap(@NotNull @NotNull Function<Integer,V> loader)
      Deprecated, for removal: This API element is subject to removal in a future version.
    • LoadingIntMap Link icon

      public LoadingIntMap(int expectedSize, @NotNull @NotNull Function<Integer,V> loader)
      Deprecated, for removal: This API element is subject to removal in a future version.
    • LoadingIntMap Link icon

      public LoadingIntMap(int expectedSize, float loadFactor, @NotNull @NotNull Function<Integer,V> loader)
      Deprecated, for removal: This API element is subject to removal in a future version.
  • Method Details Link icon

    • get Link icon

      @Nullable public V get(int key)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Specified by:
      get in interface it.unimi.dsi.fastutil.ints.Int2ObjectFunction<V>
      Overrides:
      get in class it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap<V>