* @return the serailized byte array
*/
static public byte[] serializeBytes(RepNodeImpl node) {
final NodeBinding binding = new NodeBinding();
TupleOutput tuple = new TupleOutput(new byte[100]);
binding.objectToEntry(node, tuple);
return tuple.getBufferBytes();
}
/**
* Deserializes the object serialized by {@link #serializeHex}