Package com.hexagonkt.serialization
Interface MutableData
-
- All Implemented Interfaces:
-
kotlin.collections.Map
public interface MutableData implements Map<String, Any>
-
-
Method Summary
Modifier and Type Method Description abstract Map<String, ?>data()abstract Unitwith(Map<String, ?> data)BooleanisEmpty()Objectget(String key)BooleancontainsValue(Object value)BooleancontainsKey(String key)Set<Entry.Map<String, ?>>getEntries()Set<String>getKeys()IntegergetSize()Collection<?>getValues()-
-
Method Detail
-
data
abstract Map<String, ?> data()
-
with
abstract Unit with(Map<String, ?> data)
-
isEmpty
Boolean isEmpty()
-
get
Object get(String key)
-
containsValue
Boolean containsValue(Object value)
-
containsKey
Boolean containsKey(String key)
-
getEntries
Set<Entry.Map<String, ?>> getEntries()
-
getKeys
Set<String> getKeys()
-
getSize
Integer getSize()
-
getValues
Collection<?> getValues()
-
-
-
-