Package com.stripe.net
Class HttpHeaders
- java.lang.Object
-
- com.stripe.net.HttpHeaders
-
public class HttpHeaders extends java.lang.ObjectA read-only view of a set of HTTP headers.This class mimics the
java.net.http.HttpHeadersadded in Java 11.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.String>allValues(java.lang.String name)Returns an unmodifiable List of all of the header string values of the given named header.protected booleancanEqual(java.lang.Object other)booleanequals(java.lang.Object o)java.util.Optional<java.lang.String>firstValue(java.lang.String name)Returns anOptionalcontaining the first header string value of the given named (and possibly multi-valued) header.inthashCode()java.util.Map<java.lang.String,java.util.List<java.lang.String>>map()Returns an unmodifiable Map view of this HttpHeaders.static HttpHeadersof(java.util.Map<java.lang.String,java.util.List<java.lang.String>> headerMap)Returns anHttpHeadersinstance initialized from the given map.java.lang.StringtoString()Returns thisHttpHeadersas a string.HttpHeaderswithAdditionalHeader(java.lang.String name, java.lang.String value)Returns a newHttpHeadersinstance containing the headers of the current instance plus the provided header.HttpHeaderswithAdditionalHeader(java.lang.String name, java.util.List<java.lang.String> values)Returns a newHttpHeadersinstance containing the headers of the current instance plus the provided header.HttpHeaderswithAdditionalHeaders(java.util.Map<java.lang.String,java.util.List<java.lang.String>> headerMap)Returns a newHttpHeadersinstance containing the headers of the current instance plus the provided headers.
-
-
-
Method Detail
-
of
public static HttpHeaders of(java.util.Map<java.lang.String,java.util.List<java.lang.String>> headerMap)
Returns anHttpHeadersinstance initialized from the given map.- Parameters:
headerMap- the map containing the header names and values- Returns:
- an
HttpHeadersinstance containing the given headers - Throws:
java.lang.NullPointerException- ifheaderMapisnull
-
withAdditionalHeader
public HttpHeaders withAdditionalHeader(java.lang.String name, java.lang.String value)
Returns a newHttpHeadersinstance containing the headers of the current instance plus the provided header.- Parameters:
name- the name of the header to addvalue- the value of the header to add- Returns:
- the new
HttpHeadersinstance - Throws:
java.lang.NullPointerException- ifnameorvalueisnull
-
withAdditionalHeader
public HttpHeaders withAdditionalHeader(java.lang.String name, java.util.List<java.lang.String> values)
Returns a newHttpHeadersinstance containing the headers of the current instance plus the provided header.- Parameters:
name- the name of the header to addvalues- the values of the header to add- Returns:
- the new
HttpHeadersinstance - Throws:
java.lang.NullPointerException- ifnameorvaluesisnull
-
withAdditionalHeaders
public HttpHeaders withAdditionalHeaders(java.util.Map<java.lang.String,java.util.List<java.lang.String>> headerMap)
Returns a newHttpHeadersinstance containing the headers of the current instance plus the provided headers.- Parameters:
headerMap- the map containing the headers to add- Returns:
- the new
HttpHeadersinstance - Throws:
java.lang.NullPointerException- ifheaderMapisnull
-
allValues
public java.util.List<java.lang.String> allValues(java.lang.String name)
Returns an unmodifiable List of all of the header string values of the given named header. Always returns a List, which may be empty if the header is not present.- Parameters:
name- the header name- Returns:
- a List of headers string values
-
firstValue
public java.util.Optional<java.lang.String> firstValue(java.lang.String name)
Returns anOptionalcontaining the first header string value of the given named (and possibly multi-valued) header. If the header is not present, then the returnedOptionalis empty.- Parameters:
name- the header name- Returns:
- an
Optional<String>containing the first named header string value, if present
-
map
public java.util.Map<java.lang.String,java.util.List<java.lang.String>> map()
Returns an unmodifiable Map view of this HttpHeaders.- Returns:
- the Map
-
toString
public java.lang.String toString()
Returns thisHttpHeadersas a string.- Overrides:
toStringin classjava.lang.Object- Returns:
- a string describing the HTTP headers
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-