Module utilities

Interface ModifiableMap

All Superinterfaces:
Map
All Known Implementing Classes:
Configuration, ConfigurationSet, SOBindingImpl, StringMap

public interface ModifiableMap extends Map
This interface adds a put-method to the Map interface.
Author:
Ole Kniemeyer
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static interface 
     

    Nested classes/interfaces inherited from interface de.grogra.util.Map

    Map.Chain
  • Field Summary

    Fields inherited from interface de.grogra.util.Map

    DEFAULT_VALUE, EMPTY_MAP
  • Method Summary

    Modifier and Type
    Method
    Description
    put(Object key, Object value)
    Maps key to value.

    Methods inherited from interface de.grogra.util.Map

    get
  • Method Details

    • put

      Object put(Object key, Object value)
      Maps key to value. Following invocations of the get-method with key as key will return value.
      Parameters:
      key - a key
      value - the value to be associated with key
      Returns:
      the previously associated value, or null