243244245246247248249250251252253
@ProtonCEquivalent("pn_data_type") public DataType type() { try { pn_type_t dataType = Proton.pn_data_type(_impl); final DataType type = TYPEMAP.get(dataType); return type; } catch(IllegalArgumentException e) {
939940941942943944945946947948949
private Object convert(pn_atom_t atom) { if(atom != null) { pn_type_t type = atom.getType(); pn_atom_t_u value = atom.getU(); if(pn_type_t.PN_BINARY.equals(type)) { new Binary(Proton.pn_bytes_to_array(value.getAs_bytes()));
236237238239240241242243244245246