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
ConstructorsConstructorDescriptionResponseData(int statusCode, T body) Creates an instance of aResponseDatarecord class. -
Method Summary
Modifier and TypeMethodDescriptionbody()Returns the value of thebodyrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanChecks if the response indicates a successful request.intReturns the value of thestatusCoderecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ResponseData
Creates an instance of aResponseDatarecord class.- Parameters:
statusCode- the value for thestatusCoderecord componentbody- the value for thebodyrecord 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 thestatusCoderecord component.- Returns:
- the value of the
statusCoderecord component
-
body
Returns the value of thebodyrecord component.- Returns:
- the value of the
bodyrecord component
-