Ejemplo n.º 1
0
 public UInt(byte[] b) throws UnsignedOutOfLimitsException {
   this();
   set(b);
 }
Ejemplo n.º 2
0
 public UInt(UInt b) throws UnsignedOutOfLimitsException {
   this();
   set(b.toLong());
 }
Ejemplo n.º 3
0
 public UInt(long l) throws UnsignedOutOfLimitsException {
   this();
   set(l);
 }