public class EmptyTextHeaders extends EmptyConvertibleHeaders<CharSequence,String> implements TextHeaders
TextHeaders.EntryVisitor, TextHeaders.NameVisitor
ConvertibleHeaders.TypeConverter<UnconvertedType,ConvertedType>
Headers.ValueConverter<T>
Modifier | Constructor and Description |
---|---|
protected |
EmptyTextHeaders() |
Modifier and Type | Method and Description |
---|---|
TextHeaders |
add(CharSequence name,
CharSequence... values)
Adds a new header with the specified name and values.
|
TextHeaders |
add(CharSequence name,
CharSequence value)
Adds a new header with the specified name and value.
|
TextHeaders |
add(CharSequence name,
Iterable<? extends CharSequence> values)
Adds a new header with the specified name and values.
|
TextHeaders |
add(TextHeaders headers)
|
TextHeaders |
addBoolean(CharSequence name,
boolean value)
Add the
name to value . |
TextHeaders |
addByte(CharSequence name,
byte value)
Add the
name to value . |
TextHeaders |
addChar(CharSequence name,
char value)
Add the
name to value . |
TextHeaders |
addDouble(CharSequence name,
double value)
Add the
name to value . |
TextHeaders |
addFloat(CharSequence name,
float value)
Add the
name to value . |
TextHeaders |
addInt(CharSequence name,
int value)
Add the
name to value . |
TextHeaders |
addLong(CharSequence name,
long value)
Add the
name to value . |
TextHeaders |
addObject(CharSequence name,
Iterable<?> values)
Adds a new header with the specified name and values.
|
TextHeaders |
addObject(CharSequence name,
Object... values)
Adds a new header with the specified name and values.
|
TextHeaders |
addObject(CharSequence name,
Object value)
Adds a new header with the specified name and value.
|
TextHeaders |
addShort(CharSequence name,
short value)
Add the
name to value . |
TextHeaders |
addTimeMillis(CharSequence name,
long value)
Add the
name to value . |
TextHeaders |
clear()
Removes all headers.
|
boolean |
contains(CharSequence name,
CharSequence value,
boolean ignoreCase)
Returns
true if a header with the name and value exists. |
boolean |
containsObject(CharSequence name,
Object value,
boolean ignoreCase)
Returns
true if a header with the name and value exists. |
TextHeaders |
set(CharSequence name,
CharSequence... values)
Sets a header with the specified name and values.
|
TextHeaders |
set(CharSequence name,
CharSequence value)
Sets a header with the specified name and value.
|
TextHeaders |
set(CharSequence name,
Iterable<? extends CharSequence> values)
Sets a header with the specified name and values.
|
TextHeaders |
set(TextHeaders headers)
|
TextHeaders |
setAll(TextHeaders headers)
|
TextHeaders |
setBoolean(CharSequence name,
boolean value)
Set the
name to value . |
TextHeaders |
setByte(CharSequence name,
byte value)
Set the
name to value . |
TextHeaders |
setChar(CharSequence name,
char value)
Set the
name to value . |
TextHeaders |
setDouble(CharSequence name,
double value)
Set the
name to value . |
TextHeaders |
setFloat(CharSequence name,
float value)
Set the
name to value . |
TextHeaders |
setInt(CharSequence name,
int value)
Set the
name to value . |
TextHeaders |
setLong(CharSequence name,
long value)
Set the
name to value . |
TextHeaders |
setObject(CharSequence name,
Iterable<?> values)
Sets a header with the specified name and values.
|
TextHeaders |
setObject(CharSequence name,
Object... values)
Sets a header with the specified name and values.
|
TextHeaders |
setObject(CharSequence name,
Object value)
Sets a header with the specified name and value.
|
TextHeaders |
setShort(CharSequence name,
short value)
Set the
name to value . |
TextHeaders |
setTimeMillis(CharSequence name,
long value)
Set the
name to value . |
entriesConverted, getAllAndConvert, getAllAndRemoveAndConvert, getAndConvert, getAndConvert, getAndRemoveAndConvert, getAndRemoveAndConvert, iteratorConverted, namesAndConvert
add, contains, contains, contains, contains, containsBoolean, containsByte, containsChar, containsDouble, containsFloat, containsInt, containsLong, containsObject, containsObject, containsObject, containsShort, containsTimeMillis, entries, equals, forEachEntry, forEachName, get, get, getAll, getAllAndRemove, getAndRemove, getAndRemove, getBoolean, getBoolean, getBooleanAndRemove, getBooleanAndRemove, getByte, getByte, getByteAndRemove, getByteAndRemove, getChar, getChar, getCharAndRemove, getCharAndRemove, getDouble, getDouble, getDoubleAndRemove, getDoubleAndRemove, getFloat, getFloat, getFloatAndRemove, getFloatAndRemove, getInt, getInt, getInt, getIntAndRemove, getIntAndRemove, getLong, getLong, getLongAndRemove, getLongAndRemove, getShort, getShortAndRemove, getShortAndRemove, getTimeMillis, getTimeMillis, getTimeMillisAndRemove, getTimeMillisAndRemove, hashCode, isEmpty, iterator, names, namesList, remove, set, setAll, size, toString
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
entriesConverted, getAllAndConvert, getAllAndRemoveAndConvert, getAndConvert, getAndConvert, getAndRemoveAndConvert, getAndRemoveAndConvert, iteratorConverted, namesAndConvert
add, contains, contains, contains, contains, containsBoolean, containsByte, containsChar, containsDouble, containsFloat, containsInt, containsLong, containsObject, containsObject, containsObject, containsShort, containsTimeMillis, entries, forEachEntry, forEachName, get, get, getAll, getAllAndRemove, getAndRemove, getAndRemove, getBoolean, getBoolean, getBooleanAndRemove, getBooleanAndRemove, getByte, getByte, getByteAndRemove, getByteAndRemove, getChar, getChar, getCharAndRemove, getCharAndRemove, getDouble, getDouble, getDoubleAndRemove, getDoubleAndRemove, getFloat, getFloat, getFloatAndRemove, getFloatAndRemove, getInt, getInt, getInt, getIntAndRemove, getIntAndRemove, getLong, getLong, getLongAndRemove, getLongAndRemove, getShort, getShortAndRemove, getShortAndRemove, getTimeMillis, getTimeMillis, getTimeMillisAndRemove, getTimeMillisAndRemove, isEmpty, iterator, names, namesList, remove, set, setAll, size
public boolean contains(CharSequence name, CharSequence value, boolean ignoreCase)
TextHeaders
true
if a header with the name and value exists.contains
in interface TextHeaders
name
- the header namevalue
- the header valuetrue
if it contains it false
otherwisepublic boolean containsObject(CharSequence name, Object value, boolean ignoreCase)
TextHeaders
true
if a header with the name and value exists.containsObject
in interface TextHeaders
name
- the header namevalue
- the header valuetrue
if it contains it false
otherwisepublic TextHeaders add(CharSequence name, CharSequence value)
Headers
String
, it is
converted into a String
by Object.toString()
, except in the cases of Date
and
Calendar
, which are formatted to the date format defined in RFC2616.add
in interface Headers<CharSequence>
add
in interface TextHeaders
add
in class EmptyHeaders<CharSequence>
name
- the name of the header being addedvalue
- the value of the header being addedthis
public TextHeaders add(CharSequence name, Iterable<? extends CharSequence> values)
Headers
for (Object v : values) { if (v == null) { break; } headers.add(name, v); }
add
in interface Headers<CharSequence>
add
in interface TextHeaders
add
in class EmptyHeaders<CharSequence>
name
- the name of the headepublic abstract rs being setvalues
- the values of the headers being setthis
public TextHeaders add(CharSequence name, CharSequence... values)
Headers
for (Object v : values) { if (v == null) { break; } headers.add(name, v); }
add
in interface Headers<CharSequence>
add
in interface TextHeaders
add
in class EmptyHeaders<CharSequence>
name
- the name of the headepublic abstract rs being setvalues
- the values of the headers being setthis
public TextHeaders addObject(CharSequence name, Object value)
Headers
String
, it is
converted into a String
by Object.toString()
, except in the cases of Date
and
Calendar
, which are formatted to the date format defined in RFC2616.addObject
in interface Headers<CharSequence>
addObject
in interface TextHeaders
addObject
in class EmptyHeaders<CharSequence>
name
- the name of the header being addedvalue
- the value of the header being addedthis
public TextHeaders addObject(CharSequence name, Iterable<?> values)
Headers
for (Object v : values) { if (v == null) { break; } headers.add(name, v); }
addObject
in interface Headers<CharSequence>
addObject
in interface TextHeaders
addObject
in class EmptyHeaders<CharSequence>
name
- the name of the headepublic abstract rs being setvalues
- the values of the headers being setthis
public TextHeaders addObject(CharSequence name, Object... values)
Headers
for (Object v : values) { if (v == null) { break; } headers.add(name, v); }
addObject
in interface Headers<CharSequence>
addObject
in interface TextHeaders
addObject
in class EmptyHeaders<CharSequence>
name
- the name of the headepublic abstract rs being setvalues
- the values of the headers being setthis
public TextHeaders addBoolean(CharSequence name, boolean value)
Headers
name
to value
.addBoolean
in interface Headers<CharSequence>
addBoolean
in interface TextHeaders
addBoolean
in class EmptyHeaders<CharSequence>
name
- The name to modifyvalue
- The valuethis
public TextHeaders addChar(CharSequence name, char value)
Headers
name
to value
.addChar
in interface Headers<CharSequence>
addChar
in interface TextHeaders
addChar
in class EmptyHeaders<CharSequence>
name
- The name to modifyvalue
- The valuethis
public TextHeaders addByte(CharSequence name, byte value)
Headers
name
to value
.addByte
in interface Headers<CharSequence>
addByte
in interface TextHeaders
addByte
in class EmptyHeaders<CharSequence>
name
- The name to modifyvalue
- The valuethis
public TextHeaders addShort(CharSequence name, short value)
Headers
name
to value
.addShort
in interface Headers<CharSequence>
addShort
in interface TextHeaders
addShort
in class EmptyHeaders<CharSequence>
name
- The name to modifyvalue
- The valuethis
public TextHeaders addInt(CharSequence name, int value)
Headers
name
to value
.addInt
in interface Headers<CharSequence>
addInt
in interface TextHeaders
addInt
in class EmptyHeaders<CharSequence>
name
- The name to modifyvalue
- The valuethis
public TextHeaders addLong(CharSequence name, long value)
Headers
name
to value
.addLong
in interface Headers<CharSequence>
addLong
in interface TextHeaders
addLong
in class EmptyHeaders<CharSequence>
name
- The name to modifyvalue
- The valuethis
public TextHeaders addFloat(CharSequence name, float value)
Headers
name
to value
.addFloat
in interface Headers<CharSequence>
addFloat
in interface TextHeaders
addFloat
in class EmptyHeaders<CharSequence>
name
- The name to modifyvalue
- The valuethis
public TextHeaders addDouble(CharSequence name, double value)
Headers
name
to value
.addDouble
in interface Headers<CharSequence>
addDouble
in interface TextHeaders
addDouble
in class EmptyHeaders<CharSequence>
name
- The name to modifyvalue
- The valuethis
public TextHeaders addTimeMillis(CharSequence name, long value)
Headers
name
to value
.addTimeMillis
in interface Headers<CharSequence>
addTimeMillis
in interface TextHeaders
addTimeMillis
in class EmptyHeaders<CharSequence>
name
- The name to modifyvalue
- The valuethis
public TextHeaders add(TextHeaders headers)
TextHeaders
add
in interface TextHeaders
public TextHeaders set(CharSequence name, CharSequence value)
Headers
String
, it is converted into a String
by
Object.toString()
, except for Date
and Calendar
, which are formatted
to the date format defined in RFC2616.set
in interface Headers<CharSequence>
set
in interface TextHeaders
set
in class EmptyHeaders<CharSequence>
name
- The name of the header being setvalue
- The value of the header being setthis
public TextHeaders set(CharSequence name, Iterable<? extends CharSequence> values)
Headers
headers.remove(name); for (Object v : values) { if (v == null) { break; } headers.add(name, v); }
set
in interface Headers<CharSequence>
set
in interface TextHeaders
set
in class EmptyHeaders<CharSequence>
name
- the name of the headers being setvalues
- the values of the headers being setthis
public TextHeaders set(CharSequence name, CharSequence... values)
Headers
headers.remove(name); for (Object v : values) { if (v == null) { break; } headers.add(name, v); }
set
in interface Headers<CharSequence>
set
in interface TextHeaders
set
in class EmptyHeaders<CharSequence>
name
- the name of the headers being setvalues
- the values of the headers being setthis
public TextHeaders setObject(CharSequence name, Object value)
Headers
String
, it is converted into a String
by
Object.toString()
, except for Date
and Calendar
, which are formatted
to the date format defined in RFC2616.setObject
in interface Headers<CharSequence>
setObject
in interface TextHeaders
setObject
in class EmptyHeaders<CharSequence>
name
- The name of the header being setvalue
- The value of the header being setthis
public TextHeaders setObject(CharSequence name, Iterable<?> values)
Headers
headers.remove(name); for (Object v : values) { if (v == null) { break; } headers.add(name, v); }
setObject
in interface Headers<CharSequence>
setObject
in interface TextHeaders
setObject
in class EmptyHeaders<CharSequence>
name
- the name of the headers being setvalues
- the values of the headers being setthis
public TextHeaders setObject(CharSequence name, Object... values)
Headers
headers.remove(name); for (Object v : values) { if (v == null) { break; } headers.add(name, v); }
setObject
in interface Headers<CharSequence>
setObject
in interface TextHeaders
setObject
in class EmptyHeaders<CharSequence>
name
- the name of the headers being setvalues
- the values of the headers being setthis
public TextHeaders setBoolean(CharSequence name, boolean value)
Headers
name
to value
. This will remove all previous values associated with name
.setBoolean
in interface Headers<CharSequence>
setBoolean
in interface TextHeaders
setBoolean
in class EmptyHeaders<CharSequence>
name
- The name to modifyvalue
- The valuethis
public TextHeaders setChar(CharSequence name, char value)
Headers
name
to value
. This will remove all previous values associated with name
.setChar
in interface Headers<CharSequence>
setChar
in interface TextHeaders
setChar
in class EmptyHeaders<CharSequence>
name
- The name to modifyvalue
- The valuethis
public TextHeaders setByte(CharSequence name, byte value)
Headers
name
to value
. This will remove all previous values associated with name
.setByte
in interface Headers<CharSequence>
setByte
in interface TextHeaders
setByte
in class EmptyHeaders<CharSequence>
name
- The name to modifyvalue
- The valuethis
public TextHeaders setShort(CharSequence name, short value)
Headers
name
to value
. This will remove all previous values associated with name
.setShort
in interface Headers<CharSequence>
setShort
in interface TextHeaders
setShort
in class EmptyHeaders<CharSequence>
name
- The name to modifyvalue
- The valuethis
public TextHeaders setInt(CharSequence name, int value)
Headers
name
to value
. This will remove all previous values associated with name
.setInt
in interface Headers<CharSequence>
setInt
in interface TextHeaders
setInt
in class EmptyHeaders<CharSequence>
name
- The name to modifyvalue
- The valuethis
public TextHeaders setLong(CharSequence name, long value)
Headers
name
to value
. This will remove all previous values associated with name
.setLong
in interface Headers<CharSequence>
setLong
in interface TextHeaders
setLong
in class EmptyHeaders<CharSequence>
name
- The name to modifyvalue
- The valuethis
public TextHeaders setFloat(CharSequence name, float value)
Headers
name
to value
. This will remove all previous values associated with name
.setFloat
in interface Headers<CharSequence>
setFloat
in interface TextHeaders
setFloat
in class EmptyHeaders<CharSequence>
name
- The name to modifyvalue
- The valuethis
public TextHeaders setDouble(CharSequence name, double value)
Headers
name
to value
. This will remove all previous values associated with name
.setDouble
in interface Headers<CharSequence>
setDouble
in interface TextHeaders
setDouble
in class EmptyHeaders<CharSequence>
name
- The name to modifyvalue
- The valuethis
public TextHeaders setTimeMillis(CharSequence name, long value)
Headers
name
to value
. This will remove all previous values associated with name
.setTimeMillis
in interface Headers<CharSequence>
setTimeMillis
in interface TextHeaders
setTimeMillis
in class EmptyHeaders<CharSequence>
name
- The name to modifyvalue
- The valuethis
public TextHeaders set(TextHeaders headers)
TextHeaders
set
in interface TextHeaders
public TextHeaders setAll(TextHeaders headers)
TextHeaders
setAll
in interface TextHeaders
public TextHeaders clear()
Headers
clear
in interface Headers<CharSequence>
clear
in interface TextHeaders
clear
in class EmptyHeaders<CharSequence>
this
Copyright © 2008–2015 The Netty Project. All rights reserved.