Uses of Class
org.codehaus.jackson.node.BinaryNode

Packages that use BinaryNode
org.codehaus.jackson.node Contains concrete JsonNode implementations Jackson uses for the Tree model. 
 

Uses of BinaryNode in org.codehaus.jackson.node
 

Methods in org.codehaus.jackson.node that return BinaryNode
 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)