程序包 | 说明 |
---|---|
org.codehaus.jackson.node |
Contains concrete
JsonNode implementations
Jackson uses for the Tree model. |
限定符和类型 | 方法和说明 |
---|---|
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) |