Interface ContextMap<K,​V>

    • Method Detail

      • toMap

        Map<K,​V> toMap()
      • 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

        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​(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

        default Set<K> keySet()
        Specified by:
        keySet in interface Map<K,​V>