Class NamespaceAwareStore

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Object get​(java.lang.Object key)
      Get the value that is stored under the supplied key.
      <T> T get​(java.lang.Object key, java.lang.Class<T> requiredType)
      Get the value of the specified required type that is stored under the supplied key.
      <K,V> java.lang.Object getOrComputeIfAbsent​(K key, java.util.function.Function<K,V> defaultCreator)
      Get the value that is stored under the supplied key.
      <K,V> V getOrComputeIfAbsent​(K key, java.util.function.Function<K,V> defaultCreator, java.lang.Class<V> requiredType)
      Get the value of the specified required type that is stored under the supplied key.
      void put​(java.lang.Object key, java.lang.Object value)
      Store a value for later retrieval under the supplied key.
      java.lang.Object remove​(java.lang.Object key)
      Remove the value that was previously stored under the supplied key.
      <T> T remove​(java.lang.Object key, java.lang.Class<T> requiredType)
      Remove the value of the specified required type that was previously stored under the supplied key.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait