660661662663664665666
@ProtonCEquivalent("pn_data_get_decimal128") public Decimal128 getDecimal128() { pn_decimal128_t b = Proton.pn_data_get_decimal128(_impl); ByteBuffer buf = ByteBuffer.wrap(b.getBytes()); return new Decimal128(buf.getLong(),buf.getLong()); }
652653654655656657658
9596979899100101
public Decimal128 readValue() { long msb = getDecoder().readRawLong(); long lsb = getDecoder().readRawLong(); return new Decimal128(msb, lsb); }