644645646647648649650
@Override @ProtonCEquivalent("pn_data_get_decimal32") public Decimal32 getDecimal32() { return new Decimal32((int)Proton.pn_data_get_decimal32(_impl)); }
982983984985986987988989990991992
{ return new Decimal64(value.getAs_decimal64().longValue()); } else if(pn_type_t.PN_DECIMAL32.equals(type)) { return new Decimal32((int)value.getAs_decimal32()); } else if(pn_type_t.PN_DESCRIBED.equals(type)) { // TODO }
636637638639640641642
92939495969798
return (getType() == encoding.getType()); } public Decimal32 readValue() { return new Decimal32(getDecoder().readRawInt()); }