Package com.hexagonkt.serialization
Interface Data
-
- All Implemented Interfaces:
-
kotlin.collections.Map
public interface Data<T extends Object> implements Map<String, Any>
-
-
Method Summary
Modifier and Type Method Description abstract Map<String, ?>data()abstract Twith(Map<String, ?> data)BooleanisEmpty()Objectget(String key)BooleancontainsValue(Object value)BooleancontainsKey(String key)Set<Entry.Map<String, Object>>getEntries()Set<String>getKeys()IntegergetSize()Collection<Object>getValues()-
-
Method Detail
-
data
abstract 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, Object>> getEntries()
-
getKeys
Set<String> getKeys()
-
getSize
Integer getSize()
-
getValues
Collection<Object> getValues()
-
-
-
-