Interface IAdaptedMap<K,V,K2,V2>

All Superinterfaces:
Map<K,V>
All Known Implementing Classes:
AdaptedMap, BlockVector3ChunkMap

public interface IAdaptedMap<K,V,K2,V2> extends Map<K,V>
  • Method Details

    • getParent

      Map<K2,V2> getParent()
    • adaptKey

      K2 adaptKey(K key)
    • adaptValue

      V2 adaptValue(V value)
    • adaptKey2

      K adaptKey2(K2 key)
    • adaptValue2

      V adaptValue2(V2 value)
    • size

      default int size()
      Specified by:
      size in interface Map<K,V>
    • isEmpty

      default boolean isEmpty()
      Specified by:
      isEmpty in interface Map<K,V>
    • containsKey

      default boolean containsKey(Object key)
      Specified by:
      containsKey in interface Map<K,V>
    • containsValue

      default boolean containsValue(Object value)
      Specified by:
      containsValue in interface Map<K,V>
    • get

      default V get(Object key)
      Specified by:
      get in interface Map<K,V>
    • put

      @Nullable default V put(K key, V value)
      Specified by:
      put in interface Map<K,V>
    • remove

      default V remove(Object key)
      Specified by:
      remove in interface Map<K,V>
    • putAll

      default void putAll(@Nonnull Map<? extends K,? extends V> m)
      Specified by:
      putAll in interface Map<K,V>
    • clear

      default void clear()
      Specified by:
      clear in interface Map<K,V>
    • keySet

      @Nonnull default Set<K> keySet()
      Specified by:
      keySet in interface Map<K,V>
    • values

      @Nonnull default Collection<V> values()
      Specified by:
      values in interface Map<K,V>
    • entrySet

      @Nonnull default Set<Map.Entry<K,V>> entrySet()
      Specified by:
      entrySet in interface Map<K,V>