Uses of Class
org.apache.juneau.http.header.SerializedHeader
Packages that use SerializedHeader
Package
Description
HTTP Header Beans
HTTP Part Beans
-
Uses of SerializedHeader in org.apache.juneau.http
Methods in org.apache.juneau.http that return SerializedHeaderModifier and TypeMethodDescriptionstatic final SerializedHeader
HttpHeaders.serializedHeader
(String name, Object value) Creates a newSerializedHeader
header.static SerializedHeader
HttpHeaders.serializedHeader
(String name, Object value, HttpPartSerializerSession serializer, HttpPartSchema schema, boolean skipIfEmpty) Creates a newSerializedHeader
header.static final SerializedHeader
HttpHeaders.serializedHeader
(String name, Supplier<?> value) Creates a newSerializedHeader
header with a delayed value.static SerializedHeader
HttpHeaders.serializedHeader
(String name, Supplier<?> value, HttpPartSerializerSession serializer, HttpPartSchema schema, boolean skipIfEmpty) Creates a newSerializedHeader
header. -
Uses of SerializedHeader in org.apache.juneau.http.header
Methods in org.apache.juneau.http.header that return SerializedHeaderModifier and TypeMethodDescriptionSerializedHeader.copy()
Creates a copy of this object.SerializedHeader.copyWith
(HttpPartSerializerSession serializer, HttpPartSchema schema) Copies this bean and sets the serializer and schema on it.static SerializedHeader
Static creator.static SerializedHeader
SerializedHeader.of
(String name, Object value, HttpPartSerializerSession serializer, HttpPartSchema schema, boolean skipIfEmpty) Static creator.static SerializedHeader
Static creator with delayed value.static SerializedHeader
SerializedHeader.of
(String name, Supplier<?> value, HttpPartSerializerSession serializer, HttpPartSchema schema, boolean skipIfEmpty) Static creator with delayed value.SerializedHeader.schema
(HttpPartSchema value) Sets the schema object that defines the format of the output.SerializedHeader.serializer
(HttpPartSerializer value) Sets the serializer to use for serializing the value to a string value.SerializedHeader.serializer
(HttpPartSerializerSession value) Sets the serializer to use for serializing the value to a string value.SerializedHeader.skipIfEmpty()
Don't serialize this header if the value isnull or an empty string.SerializedHeader.skipIfEmpty
(boolean value) Don't serialize this header if the value isnull or an empty string.Constructors in org.apache.juneau.http.header with parameters of type SerializedHeaderModifierConstructorDescriptionprotected
SerializedHeader
(SerializedHeader copyFrom) Copy constructor. -
Uses of SerializedHeader in org.apache.juneau.http.part
Methods in org.apache.juneau.http.part that return SerializedHeader