Class DynamicResult.Success<T>

  • Enclosing class:
    DynamicResult<T>

    public static final class DynamicResult.Success<T>
    extends DynamicResult<T>
    The result class to represent the success.
    • Field Summary

      • Fields inherited from class com.pranavpandey.android.dynamic.util.concurrent.DynamicResult

        data
    • Constructor Summary

      Constructors 
      Constructor Description
      Success​(T data)
      Constructor to initialize an object of this class.
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • Success

        public Success​(@Nullable
                       T data)
        Constructor to initialize an object of this class.
        Parameters:
        data - The data for this result.