Class DynamicResult<T>

    • Field Summary

      Fields 
      Modifier and Type Field Description
      T data
      The data associated with this result.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      T getData()
      Get the data associated with this result.
      void setData​(T data)
      Set the data associated with this result.
      • Methods inherited from class java.lang.Object

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

      • data

        public T data
        The data associated with this result.
    • Method Detail

      • getData

        @Nullable
        public T getData()
        Get the data associated with this result.
        Returns:
        The data associated with this result.
      • setData

        public void setData​(@Nullable
                            T data)
        Set the data associated with this result.
        Parameters:
        data - The data to be set.