{
return UnsignedInteger.valueOf(value.getAs_uint());
}
else if(pn_type_t.PN_ULONG.equals(type))
{
return new UnsignedLong(value.getAs_ulong().longValue());
}
else if(pn_type_t.PN_USHORT.equals(type))
{
return UnsignedShort.valueOf((short) value.getAs_ushort());
}