Package | Description |
---|---|
org.codehaus.jackson.node |
Contains concrete
JsonNode implementations
Jackson uses for the Tree model. |
Modifier and Type | Method and Description |
---|---|
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 value
|
BinaryNode |
ContainerNode.binaryNode(byte[] data) |
BinaryNode |
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 value
|
BinaryNode |
ContainerNode.binaryNode(byte[] data,
int offset,
int length) |
static BinaryNode |
BinaryNode.valueOf(byte[] data) |
static BinaryNode |
BinaryNode.valueOf(byte[] data,
int offset,
int length) |