@Generated(value="org.immutables.processor.ProxyProcessor") public final class HttpClientResponseWithConnection extends Object implements _HttpClientResponseWithConnection
_HttpClientResponseWithConnection.
Use the builder to create immutable instances:
HttpClientResponseWithConnection.builder().
Use the static factory method to create immutable instances:
HttpClientResponseWithConnection.of().
| Modifier and Type | Class and Description |
|---|---|
static class |
HttpClientResponseWithConnection.Builder
Builds instances of type
HttpClientResponseWithConnection. |
| Modifier and Type | Method and Description |
|---|---|
static HttpClientResponseWithConnection.Builder |
builder()
Creates a builder for
HttpClientResponseWithConnection. |
boolean |
equals(Object another)
This instance is equal to all instances of
HttpClientResponseWithConnection that have equal attribute values. |
reactor.netty.Connection |
getConnection() |
reactor.netty.http.client.HttpClientResponse |
getResponse() |
int |
hashCode()
Computes a hash code from attributes:
connection, response. |
static HttpClientResponseWithConnection |
of(reactor.netty.Connection connection,
reactor.netty.http.client.HttpClientResponse response)
Construct a new immutable
HttpClientResponseWithConnection instance. |
String |
toString()
Prints the immutable value
HttpClientResponseWithConnection with attribute values. |
public reactor.netty.Connection getConnection()
getConnection in interface _HttpClientResponseWithConnectionconnection attributepublic reactor.netty.http.client.HttpClientResponse getResponse()
getResponse in interface _HttpClientResponseWithConnectionresponse attributepublic boolean equals(Object another)
HttpClientResponseWithConnection that have equal attribute values.public int hashCode()
connection, response.public String toString()
HttpClientResponseWithConnection with attribute values.public static HttpClientResponseWithConnection of(reactor.netty.Connection connection, reactor.netty.http.client.HttpClientResponse response)
HttpClientResponseWithConnection instance.connection - The value for the connection attributeresponse - The value for the response attributepublic static HttpClientResponseWithConnection.Builder builder()
HttpClientResponseWithConnection.
HttpClientResponseWithConnection.builder()
.connection(reactor.netty.Connection) // required connection
.response(reactor.netty.http.client.HttpClientResponse) // required response
.build();
Copyright © 2020. All rights reserved.