4041424344454647
BytesStreamOutput out = new BytesStreamOutput(); Symbol.toStream(v, out); BytesStreamInput in = new BytesStreamInput(out.bytes()); Value v2 = (Value) Symbol.fromStream(in); assertEquals(v2.valueType(), DataTypes.STRING); } }