Class IntegerHolder


  • public class IntegerHolder
    extends java.lang.Object
    Only for internal engineering use. This class can change without notice. Container to hold an int value
    • Constructor Summary

      Constructors 
      Constructor Description
      IntegerHolder​(int value)
      Create a new integer container
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getValue()
      Gets the value stored inside this container
      void setValue​(int value)
      Sets the value of this container
      • Methods inherited from class java.lang.Object

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

      • IntegerHolder

        public IntegerHolder​(int value)
        Create a new integer container
        Parameters:
        value - value to be stored in container
    • Method Detail

      • setValue

        public void setValue​(int value)
        Sets the value of this container
        Parameters:
        value - value to be stored
      • getValue

        public int getValue()
        Gets the value stored inside this container
        Returns:
        int value