Uses of Class
org.codehaus.jackson.node.BinaryNode
-
Packages that use BinaryNode Package Description org.codehaus.jackson.node Contains concreteJsonNode
implementations Jackson uses for the Tree model. -
-
Uses of BinaryNode in org.codehaus.jackson.node
Methods in org.codehaus.jackson.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)
-