Class MutableLong


  • public class MutableLong
    extends java.lang.Object
    A mutable long
    Author:
    bratseth
    • Constructor Summary

      Constructors 
      Constructor Description
      MutableLong​(long value)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      long add​(long increment)
      Adds the increment to the current value and returns the resulting value
      long get()  
      void set​(long value)  
      long subtract​(long increment)
      Adds the increment to the current value and returns the resulting value
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

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

      • MutableLong

        public MutableLong​(long value)
    • Method Detail

      • get

        public long get()
      • set

        public void set​(long value)
      • add

        public long add​(long increment)
        Adds the increment to the current value and returns the resulting value
      • subtract

        public long subtract​(long increment)
        Adds the increment to the current value and returns the resulting value
      • toString

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