Constructors Summary |
---|
public SnmpUnsignedInt(int v)Constructs a new SnmpUnsignedInt from the specified integer value.
// CONSTRUCTORS
//-------------
super(v);
|
public SnmpUnsignedInt(Integer v)Constructs a new SnmpUnsignedInt from the specified Integer value.
super(v);
|
public SnmpUnsignedInt(long v)Constructs a new SnmpUnsignedInt from the specified long value.
super(v);
|
public SnmpUnsignedInt(Long v)Constructs a new SnmpUnsignedInt from the specified Long value.
super(v);
|