| Modifier and Type | Method and Description |
|---|---|
CborMap |
CborMap.copy()
Creates an independent, deep copy of this
CborMap. |
static CborMap |
CborMap.create()
Creates an empty, untagged
CborMap object. |
static CborMap |
CborMap.create(int tag)
Creates an empty, tagged
CborMap object. |
static CborMap |
CborMap.create(Map<CborObject,CborObject> map)
Creates a
CborMap object populated with the keys and values from map. |
static CborMap |
CborMap.create(Map<CborObject,CborObject> map,
int tag)
Creates a tagged
CborMap object populated with the keys and values from map
. |
static CborMap |
CborMap.create(Map<CborObject,CborObject> map,
int tag,
boolean isIndefiniteLength)
Creates a tagged
CborMap object populated with the keys and values from map
. |
static CborMap |
CborMap.createFromCborByteArray(byte[] input)
Parses the given CBOR byte array into a
CborMap object. |
static CborMap |
CborMap.createFromCborByteArray(byte[] input,
int offset,
int length)
Parses the given CBOR byte array into a
CborMap object. |
static CborMap |
CborMap.createFromJavaObject(Map<?,?> obj)
|
static CborMap |
CborMap.createFromJSONObject(org.json.JSONObject obj)
Creates a untagged
CborMap object from the given JSONObject. |
Copyright © 2018–2023. All rights reserved.