651652653654655656657
@Override @ProtonCEquivalent("pn_data_get_decimal64") public Decimal64 getDecimal64() { return new Decimal64(Proton.pn_data_get_decimal64(_impl).longValue()); }
978979980981982983984985986987988
// TODO } else if(pn_type_t.PN_DECIMAL64.equals(type)) { return new Decimal64(value.getAs_decimal64().longValue()); } else if(pn_type_t.PN_DECIMAL32.equals(type)) { return new Decimal32((int)value.getAs_decimal32()); }
643644645646647648649
92939495969798
return (getType() == encoding.getType()); } public Decimal64 readValue() { return new Decimal64(getDecoder().readRawLong()); }