Class UnsignedInt16

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Cloneable

    public class UnsignedInt16
    extends java.lang.Number
    implements java.io.Serializable, java.lang.Cloneable
    Implements a 16-bit unsigned integer object. The value range of an unsigned integer of 16-bit is '0 .. 65535'.
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int MAX_VALUE
      The maximum value a unsigned integer of 16-bit value can be.
      static int MIN_VALUE
      The minimum value a unsigned integer of 16-bit value can be.
    • Constructor Summary

      Constructors 
      Constructor Description
      UnsignedInt16​(byte pValue)
      Constructs an unsigned 16-bit integer object for the specified byte value.
      UnsignedInt16​(int pValue)
      Constructs an unsigned 16-bit integer object for the specified int value.
      UnsignedInt16​(short pValue)
      Constructs an unsigned 16-bit integer object for the specified short value.
      UnsignedInt16​(java.lang.String pValue)
      Constructs an unsigned 16-bit integer object for the specified String value.
      UnsignedInt16​(UnsignedInt16 pValue)
      Constructs an unsigned 16-bit integer object for the specified UnsignedInt16 value.
      UnsignedInt16​(UnsignedInt8 pValue)
      Constructs an unsigned 16-bit integer object for the specified UnsignedInt8 value.
    • Field Detail

      • MIN_VALUE

        public static int MIN_VALUE
        The minimum value a unsigned integer of 16-bit value can be. Its value is '0'.
      • MAX_VALUE

        public static int MAX_VALUE
        The maximum value a unsigned integer of 16-bit value can be. Its value is '65535'.
    • Constructor Detail

      • UnsignedInt16

        public UnsignedInt16​(byte pValue)
        Constructs an unsigned 16-bit integer object for the specified byte value.
        Parameters:
        pValue - The value of the created object
        Throws:
        java.lang.IllegalArgumentException - If value does not fit into the MIN_VALUE .. MAX_VALUE range.
      • UnsignedInt16

        public UnsignedInt16​(short pValue)
        Constructs an unsigned 16-bit integer object for the specified short value.
        Parameters:
        pValue - The value of the created object
        Throws:
        java.lang.IllegalArgumentException - If value does not fit into the MIN_VALUE .. MAX_VALUE range.
      • UnsignedInt16

        public UnsignedInt16​(int pValue)
        Constructs an unsigned 16-bit integer object for the specified int value.
        Parameters:
        pValue - The value of the created object
        Throws:
        java.lang.IllegalArgumentException - If value does not fit into the MIN_VALUE .. MAX_VALUE range.
      • UnsignedInt16

        public UnsignedInt16​(java.lang.String pValue)
        Constructs an unsigned 16-bit integer object for the specified String value.
        Parameters:
        pValue - The value of the created object
        Throws:
        java.lang.NumberFormatException - If value contains non numeric values.
        java.lang.IllegalArgumentException - If value is not a null/empty string or if value does not fit into the MIN_VALUE .. MAX_VALUE range.
      • UnsignedInt16

        public UnsignedInt16​(UnsignedInt8 pValue)
        Constructs an unsigned 16-bit integer object for the specified UnsignedInt8 value.
        Parameters:
        pValue - The value of the created object
      • UnsignedInt16

        public UnsignedInt16​(UnsignedInt16 pValue)
        Constructs an unsigned 16-bit integer object for the specified UnsignedInt16 value.
        Parameters:
        pValue - The value of the created object
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • byteValue

        public byte byteValue()
        Overrides:
        byteValue in class java.lang.Number
      • shortValue

        public short shortValue()
        Overrides:
        shortValue in class java.lang.Number
      • intValue

        public int intValue()
        Specified by:
        intValue in class java.lang.Number
      • longValue

        public long longValue()
        Specified by:
        longValue in class java.lang.Number
      • floatValue

        public float floatValue()
        Specified by:
        floatValue in class java.lang.Number
      • doubleValue

        public double doubleValue()
        Specified by:
        doubleValue in class java.lang.Number
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • clone

        public java.lang.Object clone()
        Overrides:
        clone in class java.lang.Object