* @throws com.sun.management.snmp.SnmpStatusException If an error occurs
*/
public static Integer integerValue(Long V) throws SnmpStatusException {
long v = V.longValue();
if (v > (pow(2, 31) - 1)) {
throw new SnmpStatusException("Returned intrumented value size too big");
}
Integer ret = new Integer(V.intValue());
return ret;
}