Package co.nstant.in.cbor.model
Class Map
- java.lang.Object
-
- co.nstant.in.cbor.model.DataItem
-
- co.nstant.in.cbor.model.Map
-
public class Map extends DataItem
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
DataItem
get(DataItem key)
Collection<DataItem>
getKeys()
Collection<DataItem>
getValues()
int
hashCode()
boolean
isChunked()
Map
put(DataItem key, DataItem value)
DataItem
remove(DataItem key)
co.nstant.in.cbor.model.ChunkableDataItem
setChunked(boolean chunked)
String
toString()
-
Methods inherited from class co.nstant.in.cbor.model.DataItem
assertTrue, getMajorType, getOuterTaggable, getTag, hasTag, removeTag, setTag, setTag
-
-
-
-
Method Detail
-
getKeys
public Collection<DataItem> getKeys()
-
getValues
public Collection<DataItem> getValues()
-
equals
public boolean equals(Object object)
-
hashCode
public int hashCode()
-
isChunked
public boolean isChunked()
-
setChunked
public co.nstant.in.cbor.model.ChunkableDataItem setChunked(boolean chunked)
-
-