Class IntWrapper

    • Constructor Detail

      • IntWrapper

        public IntWrapper()
        Constructor: value set to 0.
      • IntWrapper

        public IntWrapper​(int v)
        Construction: value set to provided argument.
        Parameters:
        v - value to wrap
    • Method Detail

      • add

        public void add​(int v)
        add the provided value to the integer
        Parameters:
        v - value to add
      • doubleValue

        public double doubleValue()
        Specified by:
        doubleValue in class Number
      • floatValue

        public float floatValue()
        Specified by:
        floatValue in class Number
      • get

        public int get()
        Returns:
        the integer value
      • increment

        public void increment()
        add 1 to the integer value
      • intValue

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

        public long longValue()
        Specified by:
        longValue in class Number
      • set

        public void set​(int value)
        Set the value to that of the specified integer.
        Parameters:
        value - specified integer value