Package net.pinger.disguise.response
Class Response<T>
java.lang.Object
net.pinger.disguise.response.Response<T>
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
This enum indicates the response of the request -
Field Summary
FieldsModifier and TypeFieldDescriptionThis field represents the error message of this object.This field represents the response type of this response object. -
Constructor Summary
ConstructorsConstructorDescriptionResponse(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
-
Field Details
-
type
This field represents the response type of this response object. -
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 availabletype
- the type of the responseerror
- the error, if the response was null
-
Response
This method creates a new response to a certain request.- Parameters:
response
- the response if availabletype
- the type of the response
-
-
Method Details
-
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
-