Uses of Class
org.apache.hc.client5.http.RouteInfo.TunnelType
-
Packages that use RouteInfo.TunnelType Package Description org.apache.hc.client5.http Client component APIs common to all client transports such as connection route information and resolution as well as common HTTP method definitions and exception classes. -
-
Uses of RouteInfo.TunnelType in org.apache.hc.client5.http
Fields in org.apache.hc.client5.http declared as RouteInfo.TunnelType Modifier and Type Field Description private RouteInfo.TunnelType
HttpRoute. tunnelled
Whether the the route is tunnelled through the proxy.private RouteInfo.TunnelType
RouteTracker. tunnelled
Whether the the route is tunnelled end-to-end through proxies.Methods in org.apache.hc.client5.http that return RouteInfo.TunnelType Modifier and Type Method Description RouteInfo.TunnelType
HttpRoute. getTunnelType()
RouteInfo.TunnelType
RouteInfo. getTunnelType()
Obtains the tunnel type of this route.RouteInfo.TunnelType
RouteTracker. getTunnelType()
static RouteInfo.TunnelType
RouteInfo.TunnelType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RouteInfo.TunnelType[]
RouteInfo.TunnelType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.apache.hc.client5.http with parameters of type RouteInfo.TunnelType Constructor Description HttpRoute(org.apache.hc.core5.http.HttpHost targetHost, java.net.InetAddress local, java.util.List<org.apache.hc.core5.http.HttpHost> proxies, boolean secure, RouteInfo.TunnelType tunnelled, RouteInfo.LayerType layered)
HttpRoute(org.apache.hc.core5.http.HttpHost target, java.net.InetAddress local, org.apache.hc.core5.http.HttpHost[] proxies, boolean secure, RouteInfo.TunnelType tunnelled, RouteInfo.LayerType layered)
Creates a new route with all attributes specified explicitly.HttpRoute(org.apache.hc.core5.http.HttpHost target, java.net.InetAddress local, org.apache.hc.core5.http.HttpHost proxy, boolean secure, RouteInfo.TunnelType tunnelled, RouteInfo.LayerType layered)
Creates a new route with at most one proxy.
-