Interface ProxyMap

  • All Superinterfaces:
    java.util.Map, Proxy

    public interface ProxyMap
    extends Proxy, java.util.Map
    Interface implemented by proxies on Map types.
    Author:
    Abe White
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface java.util.Map

        java.util.Map.Entry<K extends java.lang.Object,​V extends java.lang.Object>
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.Class getKeyType()
      The map key type.
      java.lang.Class getValueType()
      The map value type.
      ProxyMap newInstance​(java.lang.Class keyType, java.lang.Class valueType, java.util.Comparator compare, boolean trackChanges, boolean autoOff)
      Create a new instance of this proxy type.
      • Methods inherited from interface java.util.Map

        clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
    • Method Detail

      • getKeyType

        java.lang.Class getKeyType()
        The map key type.
      • getValueType

        java.lang.Class getValueType()
        The map value type.
      • newInstance

        ProxyMap newInstance​(java.lang.Class keyType,
                             java.lang.Class valueType,
                             java.util.Comparator compare,
                             boolean trackChanges,
                             boolean autoOff)
        Create a new instance of this proxy type.