Interface ContextMap<K,V>

All Superinterfaces:
Map<K,V>
All Known Subinterfaces:
WebInterfaceContext
All Known Implementing Classes:
DefaultWebInterfaceContext

public interface ContextMap<K,V> extends Map<K,V>
  • Method Details

    • toMap

      Map<K,V> toMap()
      Creates a mutable copy of the context map.
    • 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>
    • values

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

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