DOUBLE = 4 ;
04), followed by the eight bytes that
encode the IEEE double you are specifying.
Any idea what the spec is to reference here?
DoublePrimitiveObject {
Integer objectType; // == DOUBLE
double value;
}
SerializedDoublePrimitiveObject {
Integer objectType; // == DOUBLE
byte value[8];
}
04 00 00 00 DOUBLE 0.0 00 00 00 00 00 // is this right? should include a few more.