Uses of Class
com.fasterxml.jackson.databind.node.BinaryNode
-
Packages that use BinaryNode Package Description com.fasterxml.jackson.databind.node Contains concreteJsonNode
implementations Jackson uses for the Tree model. -
-
Uses of BinaryNode in com.fasterxml.jackson.databind.node
Methods in com.fasterxml.jackson.databind.node that return BinaryNode Modifier and Type Method Description BinaryNode
ContainerNode. binaryNode(byte[] data)
BinaryNode
ContainerNode. binaryNode(byte[] data, int offset, int length)
BinaryNode
JsonNodeFactory. binaryNode(byte[] data)
Factory method for constructing a node that represents given binary data, and will get serialized as equivalent base64-encoded String valueBinaryNode
JsonNodeFactory. binaryNode(byte[] data, int offset, int length)
Factory method for constructing a node that represents given binary data, and will get serialized as equivalent base64-encoded String valuestatic BinaryNode
BinaryNode. valueOf(byte[] data)
static BinaryNode
BinaryNode. valueOf(byte[] data, int offset, int length)
-