K - the type of the header name.V - the type of the header value.T - the type to use for return values when the intention is to return this object.public interface Headers<K,V,T extends Headers<K,V,T>>
extends java.lang.Iterable<java.util.Map.Entry<K,V>>
Headers which represents a mapping of key to value.
Duplicate keys may be allowed by implementations.| 限定符和类型 | 方法和说明 |
|---|---|
T |
add(Headers<? extends K,? extends V,?> headers)
Adds all header names and values of
headers to this object. |
T |
add(K name,
java.lang.Iterable<? extends V> values)
Adds new headers with the specified
name and values. |
T |
add(K name,
V... values)
Adds new headers with the specified
name and values. |
T |
add(K name,
V value)
Adds a new header with the specified
name and value. |
T |
addBoolean(K name,
boolean value)
Adds a new header.
|
T |
addByte(K name,
byte value)
Adds a new header.
|
T |
addChar(K name,
char value)
Adds a new header.
|
T |
addDouble(K name,
double value)
Adds a new header.
|
T |
addFloat(K name,
float value)
Adds a new header.
|
T |
addInt(K name,
int value)
Adds a new header.
|
T |
addLong(K name,
long value)
Adds a new header.
|
T |
addObject(K name,
java.lang.Iterable<?> values)
Adds a new header with the specified name and values.
|
T |
addObject(K name,
java.lang.Object... values)
Adds a new header with the specified name and values.
|
T |
addObject(K name,
java.lang.Object value)
Adds a new header.
|
T |
addShort(K name,
short value)
Adds a new header.
|
T |
addTimeMillis(K name,
long value)
Adds a new header.
|
T |
clear()
Removes all headers.
|
boolean |
contains(K name)
Returns
true if a header with the name exists, false otherwise. |
boolean |
contains(K name,
V value)
Returns
true if a header with the name and value exists, false otherwise. |
boolean |
containsBoolean(K name,
boolean value)
Returns
true if a header with the name and value exists. |
boolean |
containsByte(K name,
byte value)
Returns
true if a header with the name and value exists. |
boolean |
containsChar(K name,
char value)
Returns
true if a header with the name and value exists. |
boolean |
containsDouble(K name,
double value)
Returns
true if a header with the name and value exists. |
boolean |
containsFloat(K name,
float value)
Returns
true if a header with the name and value exists. |
boolean |
containsInt(K name,
int value)
Returns
true if a header with the name and value exists. |
boolean |
containsLong(K name,
long value)
Returns
true if a header with the name and value exists. |
boolean |
containsObject(K name,
java.lang.Object value)
Returns
true if a header with the name and value exists. |
boolean |
containsShort(K name,
short value)
Returns
true if a header with the name and value exists. |
boolean |
containsTimeMillis(K name,
long value)
Returns
true if a header with the name and value exists. |
V |
get(K name)
Returns the value of a header with the specified name.
|
V |
get(K name,
V defaultValue)
Returns the value of a header with the specified name.
|
java.util.List<V> |
getAll(K name)
Returns all values for the header with the specified name.
|
java.util.List<V> |
getAllAndRemove(K name)
Returns all values for the header with the specified name and removes them from this object.
|
V |
getAndRemove(K name)
Returns the value of a header with the specified name and removes it from this object.
|
V |
getAndRemove(K name,
V defaultValue)
Returns the value of a header with the specified name and removes it from this object.
|
java.lang.Boolean |
getBoolean(K name)
Returns the
boolean value of a header with the specified name. |
boolean |
getBoolean(K name,
boolean defaultValue)
Returns the
boolean value of a header with the specified name. |
java.lang.Boolean |
getBooleanAndRemove(K name)
Returns the
boolean value of a header with the specified name and removes the header from this
object. |
boolean |
getBooleanAndRemove(K name,
boolean defaultValue)
Returns the
boolean value of a header with the specified name and removes the header from this
object. |
java.lang.Byte |
getByte(K name)
Returns the
byte value of a header with the specified name. |
byte |
getByte(K name,
byte defaultValue)
Returns the
byte value of a header with the specified name. |
java.lang.Byte |
getByteAndRemove(K name)
Returns the
byte value of a header with the specified name and removes the header from this
object. |
byte |
getByteAndRemove(K name,
byte defaultValue)
Returns the
byte value of a header with the specified name and removes the header from this
object. |
java.lang.Character |
getChar(K name)
Returns the
char value of a header with the specified name. |
char |
getChar(K name,
char defaultValue)
Returns the
char value of a header with the specified name. |
java.lang.Character |
getCharAndRemove(K name)
Returns the
char value of a header with the specified name and removes the header from this
object. |
char |
getCharAndRemove(K name,
char defaultValue)
Returns the
char value of a header with the specified name and removes the header from this
object. |
java.lang.Double |
getDouble(K name)
Returns the
double value of a header with the specified name. |
double |
getDouble(K name,
double defaultValue)
Returns the
double value of a header with the specified name. |
java.lang.Double |
getDoubleAndRemove(K name)
Returns the
double value of a header with the specified name and removes the header from this
object. |
double |
getDoubleAndRemove(K name,
double defaultValue)
Returns the
double value of a header with the specified name and removes the header from this
object. |
java.lang.Float |
getFloat(K name)
Returns the
float value of a header with the specified name. |
float |
getFloat(K name,
float defaultValue)
Returns the
float value of a header with the specified name. |
java.lang.Float |
getFloatAndRemove(K name)
Returns the
float value of a header with the specified name and removes the header from this
object. |
float |
getFloatAndRemove(K name,
float defaultValue)
Returns the
float value of a header with the specified name and removes the header from this
object. |
java.lang.Integer |
getInt(K name)
Returns the
int value of a header with the specified name. |
int |
getInt(K name,
int defaultValue)
Returns the
int value of a header with the specified name. |
java.lang.Integer |
getIntAndRemove(K name)
Returns the
int value of a header with the specified name and removes the header from this
object. |
int |
getIntAndRemove(K name,
int defaultValue)
Returns the
int value of a header with the specified name and removes the header from this
object. |
java.lang.Long |
getLong(K name)
Returns the
long value of a header with the specified name. |
long |
getLong(K name,
long defaultValue)
Returns the
long value of a header with the specified name. |
java.lang.Long |
getLongAndRemove(K name)
Returns the
long value of a header with the specified name and removes the header from this
object. |
long |
getLongAndRemove(K name,
long defaultValue)
Returns the
long value of a header with the specified name and removes the header from this
object. |
java.lang.Short |
getShort(K name)
Returns the
short value of a header with the specified name. |
short |
getShort(K name,
short defaultValue)
Returns the
short value of a header with the specified name. |
java.lang.Short |
getShortAndRemove(K name)
Returns the
short value of a header with the specified name and removes the header from this
object. |
short |
getShortAndRemove(K name,
short defaultValue)
Returns the
short value of a header with the specified name and removes the header from this
object. |
java.lang.Long |
getTimeMillis(K name)
Returns the value of a header with the specified name in milliseconds.
|
long |
getTimeMillis(K name,
long defaultValue)
Returns the value of a header with the specified name in milliseconds.
|
java.lang.Long |
getTimeMillisAndRemove(K name)
Returns the value of a header with the specified
name in milliseconds and removes the header from this
object. |
long |
getTimeMillisAndRemove(K name,
long defaultValue)
Returns the value of a header with the specified
name in milliseconds and removes the header from this
object. |
boolean |
isEmpty()
|
java.util.Iterator<java.util.Map.Entry<K,V>> |
iterator() |
java.util.Set<K> |
names()
Returns a
Set of all header names in this object. |
boolean |
remove(K name)
Removes all headers with the specified
name. |
T |
set(Headers<? extends K,? extends V,?> headers)
Clears the current header entries and copies all header entries of the specified
headers. |
T |
set(K name,
java.lang.Iterable<? extends V> values)
Sets a new header with the specified name and values.
|
T |
set(K name,
V... values)
Sets a header with the specified name and values.
|
T |
set(K name,
V value)
Sets a header with the specified name and value.
|
T |
setAll(Headers<? extends K,? extends V,?> headers)
Retains all current headers but calls
#set(K, V) for each entry in headers. |
T |
setBoolean(K name,
boolean value)
Set the
name to value. |
T |
setByte(K name,
byte value)
Set the
name to value. |
T |
setChar(K name,
char value)
Set the
name to value. |
T |
setDouble(K name,
double value)
Set the
name to value. |
T |
setFloat(K name,
float value)
Set the
name to value. |
T |
setInt(K name,
int value)
Set the
name to value. |
T |
setLong(K name,
long value)
Set the
name to value. |
T |
setObject(K name,
java.lang.Iterable<?> values)
Sets a header with the specified name and values.
|
T |
setObject(K name,
java.lang.Object... values)
Sets a header with the specified name and values.
|
T |
setObject(K name,
java.lang.Object value)
Sets a new header.
|
T |
setShort(K name,
short value)
Set the
name to value. |
T |
setTimeMillis(K name,
long value)
Set the
name to value. |
int |
size()
Returns the number of headers in this object.
|
V get(K name)
name - the name of the header to retrievenull if there's no such headerV get(K name, V defaultValue)
name - the name of the header to retrievedefaultValue - the default valuedefaultValue if there is no such headerV getAndRemove(K name)
name - the name of the header to retrievenull if there is no such headerV getAndRemove(K name, V defaultValue)
name - the name of the header to retrievedefaultValue - the default valuedefaultValue if there is no such headerjava.util.List<V> getAll(K name)
List can't be modified.name - the name of the header to retrieveList of header values or an empty List if no values are found.java.util.List<V> getAllAndRemove(K name)
List can't be modified.name - the name of the header to retrieveList of header values or an empty List if no values are found.java.lang.Boolean getBoolean(K name)
boolean value of a header with the specified name. If there is more than one value for the
specified name, the first value in insertion order is returned.name - the name of the header to retrieveboolean value of the first value in insertion order or null if there is no such
value or it can't be converted to boolean.boolean getBoolean(K name, boolean defaultValue)
boolean value of a header with the specified name. If there is more than one value for the
specified name, the first value in insertion order is returned.name - the name of the header to retrievedefaultValue - the default valueboolean value of the first value in insertion order or defaultValue if there is no
such value or it can't be converted to boolean.java.lang.Byte getByte(K name)
byte value of a header with the specified name. If there is more than one value for the
specified name, the first value in insertion order is returned.name - the name of the header to retrievebyte value of the first value in insertion order or null if there is no such
value or it can't be converted to byte.byte getByte(K name, byte defaultValue)
byte value of a header with the specified name. If there is more than one value for the
specified name, the first value in insertion order is returned.name - the name of the header to retrievedefaultValue - the default valuebyte value of the first value in insertion order or defaultValue if there is no
such value or it can't be converted to byte.java.lang.Character getChar(K name)
char value of a header with the specified name. If there is more than one value for the
specified name, the first value in insertion order is returned.name - the name of the header to retrievechar value of the first value in insertion order or null if there is no such
value or it can't be converted to char.char getChar(K name, char defaultValue)
char value of a header with the specified name. If there is more than one value for the
specified name, the first value in insertion order is returned.name - the name of the header to retrievedefaultValue - the default valuechar value of the first value in insertion order or defaultValue if there is no
such value or it can't be converted to char.java.lang.Short getShort(K name)
short value of a header with the specified name. If there is more than one value for the
specified name, the first value in insertion order is returned.name - the name of the header to retrieveshort value of the first value in insertion order or null if there is no such
value or it can't be converted to short.short getShort(K name, short defaultValue)
short value of a header with the specified name. If there is more than one value for the
specified name, the first value in insertion order is returned.name - the name of the header to retrievedefaultValue - the default valueshort value of the first value in insertion order or defaultValue if there is no
such value or it can't be converted to short.java.lang.Integer getInt(K name)
int value of a header with the specified name. If there is more than one value for the
specified name, the first value in insertion order is returned.name - the name of the header to retrieveint value of the first value in insertion order or null if there is no such
value or it can't be converted to int.int getInt(K name, int defaultValue)
int value of a header with the specified name. If there is more than one value for the
specified name, the first value in insertion order is returned.name - the name of the header to retrievedefaultValue - the default valueint value of the first value in insertion order or defaultValue if there is no
such value or it can't be converted to int.java.lang.Long getLong(K name)
long value of a header with the specified name. If there is more than one value for the
specified name, the first value in insertion order is returned.name - the name of the header to retrievelong value of the first value in insertion order or null if there is no such
value or it can't be converted to long.long getLong(K name, long defaultValue)
long value of a header with the specified name. If there is more than one value for the
specified name, the first value in insertion order is returned.name - the name of the header to retrievedefaultValue - the default valuelong value of the first value in insertion order or defaultValue if there is no
such value or it can't be converted to long.java.lang.Float getFloat(K name)
float value of a header with the specified name. If there is more than one value for the
specified name, the first value in insertion order is returned.name - the name of the header to retrievefloat value of the first value in insertion order or null if there is no such
value or it can't be converted to float.float getFloat(K name, float defaultValue)
float value of a header with the specified name. If there is more than one value for the
specified name, the first value in insertion order is returned.name - the name of the header to retrievedefaultValue - the default valuefloat value of the first value in insertion order or defaultValue if there is no
such value or it can't be converted to float.java.lang.Double getDouble(K name)
double value of a header with the specified name. If there is more than one value for the
specified name, the first value in insertion order is returned.name - the name of the header to retrievedouble value of the first value in insertion order or null if there is no such
value or it can't be converted to double.double getDouble(K name, double defaultValue)
double value of a header with the specified name. If there is more than one value for the
specified name, the first value in insertion order is returned.name - the name of the header to retrievedefaultValue - the default valuedouble value of the first value in insertion order or defaultValue if there is no
such value or it can't be converted to double.java.lang.Long getTimeMillis(K name)
name - the name of the header to retrievenull if there is no such
value or it can't be converted to milliseconds.long getTimeMillis(K name, long defaultValue)
name - the name of the header to retrievedefaultValue - the default valuedefaultValue if there is no such
value or it can't be converted to milliseconds.java.lang.Boolean getBooleanAndRemove(K name)
boolean value of a header with the specified name and removes the header from this
object. If there is more than one value for the specified name, the first value in insertion order is returned.
In any case all values for name are removed.
If an exception occurs during the translation from type T all entries with name may still
be removed.
name - the name of the header to retrieveboolean value of the first value in insertion order or null if there is no
such value or it can't be converted to boolean.boolean getBooleanAndRemove(K name, boolean defaultValue)
boolean value of a header with the specified name and removes the header from this
object. If there is more than one value for the specified name, the first value in insertion order is returned.
In any case all values for name are removed.
If an exception occurs during the translation from type T all entries with name may still
be removed.
name - the name of the header to searchdefaultValue - the default valueboolean value of the first value in insertion order or defaultValue if there is no
such value or it can't be converted to boolean.java.lang.Byte getByteAndRemove(K name)
byte value of a header with the specified name and removes the header from this
object. If there is more than one value for the specified name, the first value in insertion order is returned.
In any case all values for name are removed.
If an exception occurs during the translation from type T all entries with name may still
be removed.
name - the name of the header to searchbyte value of the first value in insertion order or null if there is no
such value or it can't be converted to byte.byte getByteAndRemove(K name, byte defaultValue)
byte value of a header with the specified name and removes the header from this
object. If there is more than one value for the specified name, the first value in insertion order is returned.
In any case all values for name are removed.
If an exception occurs during the translation from type T all entries with name may still
be removed.
name - the name of the header to searchdefaultValue - the default valuebyte value of the first value in insertion order or defaultValue if there is no
such value or it can't be converted to byte.java.lang.Character getCharAndRemove(K name)
char value of a header with the specified name and removes the header from this
object. If there is more than one value for the specified name, the first value in insertion order is returned.
In any case all values for name are removed.
If an exception occurs during the translation from type T all entries with name may still
be removed.
name - the name of the header to searchchar value of the first value in insertion order or null if there is no
such value or it can't be converted to char.char getCharAndRemove(K name, char defaultValue)
char value of a header with the specified name and removes the header from this
object. If there is more than one value for the specified name, the first value in insertion order is returned.
In any case all values for name are removed.
If an exception occurs during the translation from type T all entries with name may still
be removed.
name - the name of the header to searchdefaultValue - the default valuechar value of the first value in insertion order or defaultValue if there is no
such value or it can't be converted to char.java.lang.Short getShortAndRemove(K name)
short value of a header with the specified name and removes the header from this
object. If there is more than one value for the specified name, the first value in insertion order is returned.
In any case all values for name are removed.
If an exception occurs during the translation from type T all entries with name may still
be removed.
name - the name of the header to searchshort value of the first value in insertion order or null if there is no
such value or it can't be converted to short.short getShortAndRemove(K name, short defaultValue)
short value of a header with the specified name and removes the header from this
object. If there is more than one value for the specified name, the first value in insertion order is returned.
In any case all values for name are removed.
If an exception occurs during the translation from type T all entries with name may still
be removed.
name - the name of the header to searchdefaultValue - the default valueshort value of the first value in insertion order or defaultValue if there is no
such value or it can't be converted to short.java.lang.Integer getIntAndRemove(K name)
int value of a header with the specified name and removes the header from this
object. If there is more than one value for the specified name, the first value in insertion order is returned.
In any case all values for name are removed.
If an exception occurs during the translation from type T all entries with name may still
be removed.
name - the name of the header to searchint value of the first value in insertion order or null if there is no
such value or it can't be converted to int.int getIntAndRemove(K name, int defaultValue)
int value of a header with the specified name and removes the header from this
object. If there is more than one value for the specified name, the first value in insertion order is returned.
In any case all values for name are removed.
If an exception occurs during the translation from type T all entries with name may still
be removed.
name - the name of the header to searchdefaultValue - the default valueint value of the first value in insertion order or defaultValue if there is no
such value or it can't be converted to int.java.lang.Long getLongAndRemove(K name)
long value of a header with the specified name and removes the header from this
object. If there is more than one value for the specified name, the first value in insertion order is returned.
In any case all values for name are removed.
If an exception occurs during the translation from type T all entries with name may still
be removed.
name - the name of the header to searchlong value of the first value in insertion order or null if there is no
such value or it can't be converted to long.long getLongAndRemove(K name, long defaultValue)
long value of a header with the specified name and removes the header from this
object. If there is more than one value for the specified name, the first value in insertion order is returned.
In any case all values for name are removed.
If an exception occurs during the translation from type T all entries with name may still
be removed.
name - the name of the header to searchdefaultValue - the default valuelong value of the first value in insertion order or defaultValue if there is no
such value or it can't be converted to long.java.lang.Float getFloatAndRemove(K name)
float value of a header with the specified name and removes the header from this
object. If there is more than one value for the specified name, the first value in insertion order is returned.
In any case all values for name are removed.
If an exception occurs during the translation from type T all entries with name may still
be removed.
name - the name of the header to searchfloat value of the first value in insertion order or null if there is no
such value or it can't be converted to float.float getFloatAndRemove(K name, float defaultValue)
float value of a header with the specified name and removes the header from this
object. If there is more than one value for the specified name, the first value in insertion order is returned.
In any case all values for name are removed.
If an exception occurs during the translation from type T all entries with name may still
be removed.
name - the name of the header to searchdefaultValue - the default valuefloat value of the first value in insertion order or defaultValue if there is no
such value or it can't be converted to float.java.lang.Double getDoubleAndRemove(K name)
double value of a header with the specified name and removes the header from this
object. If there is more than one value for the specified name, the first value in insertion order is returned.
In any case all values for name are removed.
If an exception occurs during the translation from type T all entries with name may still
be removed.
name - the name of the header to searchdouble value of the first value in insertion order or null if there is no
such value or it can't be converted to double.double getDoubleAndRemove(K name, double defaultValue)
double value of a header with the specified name and removes the header from this
object. If there is more than one value for the specified name, the first value in insertion order is returned.
In any case all values for name are removed.
If an exception occurs during the translation from type T all entries with name may still
be removed.
name - the name of the header to searchdefaultValue - the default valuedouble value of the first value in insertion order or defaultValue if there is no
such value or it can't be converted to double.java.lang.Long getTimeMillisAndRemove(K name)
name in milliseconds and removes the header from this
object. If there is more than one value for the specified name, the first value in insertion order is
returned. In any case all values for name are removed.
If an exception occurs during the translation from type T all entries with name may still
be removed.
name - the name of the header to retrievenull if there is no such
value or it can't be converted to milliseconds.long getTimeMillisAndRemove(K name, long defaultValue)
name in milliseconds and removes the header from this
object. If there is more than one value for the specified name, the first value in insertion order is
returned. In any case all values for name are removed.
If an exception occurs during the translation from type T all entries with name may still
be removed.
name - the name of the header to retrievedefaultValue - the default valuedefaultValue if there is no such
value or it can't be converted to milliseconds.boolean contains(K name)
true if a header with the name exists, false otherwise.name - the header nameboolean contains(K name, V value)
true if a header with the name and value exists, false otherwise.
The Object.equals(Object) method is used to test for equality of value.
name - the header namevalue - the header value of the header to findboolean containsObject(K name, java.lang.Object value)
true if a header with the name and value exists.name - the header namevalue - the header valuetrue if it contains it false otherwiseboolean containsBoolean(K name, boolean value)
true if a header with the name and value exists.name - the header namevalue - the header valuetrue if it contains it false otherwiseboolean containsByte(K name, byte value)
true if a header with the name and value exists.name - the header namevalue - the header valuetrue if it contains it false otherwiseboolean containsChar(K name, char value)
true if a header with the name and value exists.name - the header namevalue - the header valuetrue if it contains it false otherwiseboolean containsShort(K name, short value)
true if a header with the name and value exists.name - the header namevalue - the header valuetrue if it contains it false otherwiseboolean containsInt(K name, int value)
true if a header with the name and value exists.name - the header namevalue - the header valuetrue if it contains it false otherwiseboolean containsLong(K name, long value)
true if a header with the name and value exists.name - the header namevalue - the header valuetrue if it contains it false otherwiseboolean containsFloat(K name, float value)
true if a header with the name and value exists.name - the header namevalue - the header valuetrue if it contains it false otherwiseboolean containsDouble(K name, double value)
true if a header with the name and value exists.name - the header namevalue - the header valuetrue if it contains it false otherwiseboolean containsTimeMillis(K name, long value)
true if a header with the name and value exists.name - the header namevalue - the header valuetrue if it contains it false otherwiseint size()
boolean isEmpty()
java.util.Set<K> names()
Set of all header names in this object. The returned Set cannot be modified.T add(K name, V value)
name and value.name - the name of the headervalue - the value of the headerthisT add(K name, java.lang.Iterable<? extends V> values)
name and values. This method is semantically equivalent to
for (T value : values) {
headers.add(name, value);
}
name - the header namevalues - the values of the headerthisT add(K name, V... values)
name and values. This method is semantically equivalent to
for (T value : values) {
headers.add(name, value);
}
name - the header namevalues - the values of the headerthisT addObject(K name, java.lang.Object value)
value is added, it's converted to type T.name - the header namevalue - the value of the headerthisT addObject(K name, java.lang.Iterable<?> values)
for (Object v : values) {
headers.addObject(name, v);
}
name - the header namevalues - the value of the headerthisT addObject(K name, java.lang.Object... values)
for (Object v : values) {
headers.addObject(name, v);
}
name - the header namevalues - the value of the headerthisT addBoolean(K name, boolean value)
name - the header namevalue - the value of the headerthisT addByte(K name, byte value)
name - the header namevalue - the value of the headerthisT addChar(K name, char value)
name - the header namevalue - the value of the headerthisT addShort(K name, short value)
name - the header namevalue - the value of the headerthisT addInt(K name, int value)
name - the header namevalue - the value of the headerthisT addLong(K name, long value)
name - the header namevalue - the value of the headerthisT addFloat(K name, float value)
name - the header namevalue - the value of the headerthisT addDouble(K name, double value)
name - the header namevalue - the value of the headerthisT addTimeMillis(K name, long value)
name - the header namevalue - the value of the headerthisT add(Headers<? extends K,? extends V,?> headers)
headers to this object.thisjava.lang.IllegalArgumentException - if headers == this.T set(K name, V value)
name - the header namevalue - the value of the headerthisT set(K name, java.lang.Iterable<? extends V> values)
for (T v : values) {
headers.addObject(name, v);
}
name - the header namevalues - the value of the headerthisT set(K name, V... values)
headers.remove(name);
for (T v : values) {
headers.add(name, v);
}
name - the header namevalues - the value of the headerthisT setObject(K name, java.lang.Object value)
value is add, it's
converted to type T.name - the header namevalue - the value of the headerthisjava.lang.NullPointerException - if either name or value before or after its conversion is
null.T setObject(K name, java.lang.Iterable<?> values)
headers.remove(name);
for (Object v : values) {
headers.addObject(name, v);
}
name - the header namevalues - the values of the headerthisT setObject(K name, java.lang.Object... values)
headers.remove(name);
for (Object v : values) {
headers.addObject(name, v);
}
name - the header namevalues - the values of the headerthisT setBoolean(K name, boolean value)
name to value. This will remove all previous values associated with name.name - The name to modifyvalue - The valuethisT setByte(K name, byte value)
name to value. This will remove all previous values associated with name.name - The name to modifyvalue - The valuethisT setChar(K name, char value)
name to value. This will remove all previous values associated with name.name - The name to modifyvalue - The valuethisT setShort(K name, short value)
name to value. This will remove all previous values associated with name.name - The name to modifyvalue - The valuethisT setInt(K name, int value)
name to value. This will remove all previous values associated with name.name - The name to modifyvalue - The valuethisT setLong(K name, long value)
name to value. This will remove all previous values associated with name.name - The name to modifyvalue - The valuethisT setFloat(K name, float value)
name to value. This will remove all previous values associated with name.name - The name to modifyvalue - The valuethisT setDouble(K name, double value)
name to value. This will remove all previous values associated with name.name - The name to modifyvalue - The valuethisT setTimeMillis(K name, long value)
name to value. This will remove all previous values associated with name.name - The name to modifyvalue - The valuethisT set(Headers<? extends K,? extends V,?> headers)
headers.thisT setAll(Headers<? extends K,? extends V,?> headers)
#set(K, V) for each entry in headers.headers - The headers used to #set(K, V) values in this instancethisboolean remove(K name)
name.name - the header nametrue if at least one entry has been removed.