Uses of Class
com.fasterxml.jackson.dataformat.cbor.CBORWriteContext
-
Packages that use CBORWriteContext Package Description com.fasterxml.jackson.dataformat.cbor -
-
Uses of CBORWriteContext in com.fasterxml.jackson.dataformat.cbor
Fields in com.fasterxml.jackson.dataformat.cbor declared as CBORWriteContext Modifier and Type Field Description protected CBORWriteContext
CBORWriteContext. _childToRecycle
protected CBORWriteContext
CBORWriteContext. _parent
Parent context for this context; null for root context.protected CBORWriteContext
CBORGenerator. _streamWriteContext
Methods in com.fasterxml.jackson.dataformat.cbor that return CBORWriteContext Modifier and Type Method Description CBORWriteContext
CBORWriteContext. clearAndGetParent()
Method that can be used to both clear the accumulated references (specifically value set withsetCurrentValue(Object)
) that should not be retained, and returns parent (as wouldgetParent()
do).CBORWriteContext
CBORWriteContext. createChildArrayContext(java.lang.Object currentValue)
CBORWriteContext
CBORWriteContext. createChildObjectContext(java.lang.Object currentValue)
static CBORWriteContext
CBORWriteContext. createRootContext(com.fasterxml.jackson.core.json.DupDetector dd)
CBORWriteContext
CBORWriteContext. getParent()
private CBORWriteContext
CBORWriteContext. reset(int type, java.lang.Object currentValue)
CBORWriteContext
CBORWriteContext. withDupDetector(com.fasterxml.jackson.core.json.DupDetector dups)
Constructors in com.fasterxml.jackson.dataformat.cbor with parameters of type CBORWriteContext Constructor Description CBORWriteContext(int type, CBORWriteContext parent, com.fasterxml.jackson.core.json.DupDetector dups, java.lang.Object currentValue)
-