Interface ValueHolderInterface<T>

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static boolean shouldToStringInstantiate
      Can be used to have transparent indirection toString instantiate the objects.
    • Field Detail

      • shouldToStringInstantiate

        static final boolean shouldToStringInstantiate
        Can be used to have transparent indirection toString instantiate the objects.
        See Also:
        Constant Field Values
    • Method Detail

      • clone

        Object clone()
        PUBLIC: Copy the value holder (but not its' reference, shallow).
      • getValue

        T getValue()
        PUBLIC: Return the value.
      • isInstantiated

        boolean isInstantiated()
        PUBLIC: Return whether the contents have been read from the database. This is used periodically by the indirection policy to determine whether to trigger the database read.
      • setValue

        void setValue​(T value)
        PUBLIC: Set the value.