Class ByRef<T>


  • public class ByRef<T>
    extends java.lang.Object
    Useful as "out" or "by reference" function parameter.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      T value  
    • Constructor Summary

      Constructors 
      Constructor Description
      ByRef()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static <T> ByRef<T> newInstance()  
      static <T> ByRef<T> newInstance​(T initialValue)  
      • Methods inherited from class java.lang.Object

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

      • value

        public T value
    • Constructor Detail

      • ByRef

        public ByRef()
    • Method Detail

      • newInstance

        public static <T> ByRef<T> newInstance​(T initialValue)
      • newInstance

        public static <T> ByRef<T> newInstance()