Record Class ResponseData<T>
java.lang.Object
java.lang.Record
org.jweaver.crawler.internal.result.ResponseData<T>
- Type Parameters:
T
- The type of the response body.- Record Components:
statusCode
- HTTP statusCodebody
- HTTP response body
The ResponseData record represents the response data received from a web request. It includes the
HTTP status code and the body of the response.
-
Constructor Summary
ConstructorDescriptionResponseData
(int statusCode, T body) Creates an instance of aResponseData
record class. -
Method Summary
Modifier and TypeMethodDescriptionbody()
Returns the value of thebody
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
Checks if the response indicates a successful request.int
Returns the value of thestatusCode
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
ResponseData
Creates an instance of aResponseData
record class.- Parameters:
statusCode
- the value for thestatusCode
record componentbody
- the value for thebody
record component
-
-
Method Details
-
isSuccess
public boolean isSuccess()Checks if the response indicates a successful request.- Returns:
- True if the status code is in the range of 200 to 299 (inclusive), indicating success; false otherwise.
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
statusCode
public int statusCode()Returns the value of thestatusCode
record component.- Returns:
- the value of the
statusCode
record component
-
body
Returns the value of thebody
record component.- Returns:
- the value of the
body
record component
-