Class UNumber

  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    UByte, UInteger, ULong, UShort

    public abstract class UNumber
    extends java.lang.Number
    A base type for unsigned numbers.
    Author:
    Lukas Eder
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      UNumber()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.math.BigInteger toBigInteger()
      Get this number as a BigInteger.
      • Methods inherited from class java.lang.Number

        byteValue, doubleValue, floatValue, intValue, longValue, shortValue
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • UNumber

        public UNumber()
    • Method Detail

      • toBigInteger

        public java.math.BigInteger toBigInteger()
        Get this number as a BigInteger. This is a convenience method for calling new BigInteger(toString())