Class Response<T>

java.lang.Object
net.pinger.disguise.response.Response<T>

public class Response<T> extends Object
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static class 
    This enum indicates the response of the request
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    This field represents the error message of this object.
    This field represents the response type of this response object.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Response​(T response, Response.ResponseType type)
    This method creates a new response to a certain request.
    Response​(T response, Response.ResponseType type, Throwable error)
    This method creates a new response to a certain request.
  • Method Summary

    Modifier and Type
    Method
    Description
    get()
    This method returns the object that is the success response of this instance.
    boolean
    This method checks if the operation was successful, or in other words if the response provider was not null.

    Methods inherited from class java.lang.Object

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

    • type

      public final Response.ResponseType type
      This field represents the response type of this response object.
    • error

      public final Throwable error
      This field represents the error message of this object.

      Note that this method is nullable, so if the get() method doesn't return null, this method will.

  • Constructor Details

    • Response

      public Response(@Nullable T response, @Nonnull Response.ResponseType type, @Nullable Throwable error)
      This method creates a new response to a certain request.
      Parameters:
      response - the response if available
      type - the type of the response
      error - the error, if the response was null
    • Response

      public Response(T response, Response.ResponseType type)
      This method creates a new response to a certain request.
      Parameters:
      response - the response if available
      type - the type of the response
  • Method Details

    • get

      @Nullable public T get()
      This method returns the object that is the success response of this instance.

      This method may return null if the response exists, but it is not a guarantee.

      Returns:
      the success response
    • success

      public boolean success()
      This method checks if the operation was successful, or in other words if the response provider was not null.
      Returns:
      the response