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