Package org.refcodes.structure
Interface Keys.MutableKeys<K,V>
-
- Type Parameters:
K- The type of the key.V- The type of the value which relates to a key.
- All Known Subinterfaces:
CanonicalMap.CanonicalMapBuilder,CanonicalMap.MutableCanonicalMap,Dictionary.MutableDictionary<K,V>,Dictionary.MutableDictionary.DictionaryBuilder<K,V,B>,Keys.MutableValues<K,V>,PathMap.MutablePathMap<T>,PathMap.PathMapBuilder<T>,PropertiesAccessorMixin.PropertiesBuilderMixin<T>,PropertiesAccessorMixin.PropertiesMixin,PropertiesAccessorMixin.PropertiesMutatorMixin
- All Known Implementing Classes:
CanonicalMapBuilderImpl,PathMapBuilderImpl
public static interface Keys.MutableKeys<K,V> extends Keys<K,V>, Clearable
Adds mutable functionality to theKeysinterface.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.refcodes.structure.Keys
Keys.MutableKeys<K,V>, Keys.MutableValues<K,V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Vdelete(java.lang.String aKey)Removes an element identified by the given key.-
Methods inherited from interface org.refcodes.structure.Keys
containsKey, containsValue, get, getOr, keySet, use, values
-
-
-
-
Method Detail
-
delete
V delete(java.lang.String aKey)
Removes an element identified by the given key.- Parameters:
aKey- The key which's element is to be removed.- Returns:
- The value being removed.
-
-