Uses of Class
org.junit.platform.engine.support.store.NamespacedHierarchicalStoreException

Package
Description
Reusable data structures for test engines and their extensions.
  • Uses of NamespacedHierarchicalStoreException in org.junit.platform.engine.support.store

    Modifier and Type
    Method
    Description
    <T> T
    NamespacedHierarchicalStore.get(N namespace, Object key, Class<T> requiredType)
    Get the value stored for the supplied namespace and key in this store or the parent store, if present, and cast it to the supplied required type.
    <K, V> V
    NamespacedHierarchicalStore.getOrComputeIfAbsent(N namespace, K key, Function<K,V> defaultCreator, Class<V> requiredType)
    Get the value stored for the supplied namespace and key in this store or the parent store, if present, or call the supplied function to compute it and, finally, cast it to the supplied required type.
    NamespacedHierarchicalStore.put(N namespace, Object key, Object value)
    Put the supplied value for the supplied namespace and key into this store and return the previously associated value in this store.
    <T> T
    NamespacedHierarchicalStore.remove(N namespace, Object key, Class<T> requiredType)
    Remove the value stored for the supplied namespace and key from this store and cast it to the supplied required type.