Uses of Class
org.apache.hc.client5.http.entity.mime.MultipartPart
Packages that use MultipartPart
-
Uses of MultipartPart in org.apache.hc.client5.http.entity.mime
Subclasses of MultipartPart in org.apache.hc.client5.http.entity.mimeModifier and TypeClassDescriptionclass
FormBodyPart class represents a content body that can be used as a part of multipart encoded entities.Fields in org.apache.hc.client5.http.entity.mime with type parameters of type MultipartPartModifier and TypeFieldDescriptionprivate List
<MultipartPart> MultipartEntityBuilder.multipartParts
private final List
<MultipartPart> HttpRFC6532Multipart.parts
private final List
<MultipartPart> HttpRFC7578Multipart.parts
private final List
<MultipartPart> HttpStrictMultipart.parts
private final List
<MultipartPart> LegacyMultipart.parts
Methods in org.apache.hc.client5.http.entity.mime that return MultipartPartMethods in org.apache.hc.client5.http.entity.mime that return types with arguments of type MultipartPartModifier and TypeMethodDescriptionabstract List
<MultipartPart> AbstractMultipartFormat.getParts()
HttpRFC6532Multipart.getParts()
HttpRFC7578Multipart.getParts()
HttpStrictMultipart.getParts()
LegacyMultipart.getParts()
Methods in org.apache.hc.client5.http.entity.mime with parameters of type MultipartPartModifier and TypeMethodDescriptionMultipartEntityBuilder.addPart
(MultipartPart multipartPart) protected abstract void
AbstractMultipartFormat.formatMultipartHeader
(MultipartPart part, OutputStream out) Write the multipart header fields; depends on the style.protected void
HttpRFC6532Multipart.formatMultipartHeader
(MultipartPart part, OutputStream out) protected void
HttpRFC7578Multipart.formatMultipartHeader
(MultipartPart part, OutputStream out) protected void
HttpStrictMultipart.formatMultipartHeader
(MultipartPart part, OutputStream out) protected void
LegacyMultipart.formatMultipartHeader
(MultipartPart part, OutputStream out) Write the multipart header fields; depends on the style.Constructor parameters in org.apache.hc.client5.http.entity.mime with type arguments of type MultipartPartModifierConstructorDescriptionHttpRFC6532Multipart
(Charset charset, String boundary, List<MultipartPart> parts) Constructs a new instance ofHttpRFC6532Multipart
with the given charset, boundary, and parts.HttpRFC6532Multipart
(Charset charset, String boundary, List<MultipartPart> parts, String preamble, String epilogue) Constructs a new instance ofHttpRFC6532Multipart
.HttpRFC7578Multipart
(Charset charset, String boundary, List<MultipartPart> parts) Constructs a new instance ofHttpRFC7578Multipart
with the given charset, boundary, and parts.HttpRFC7578Multipart
(Charset charset, String boundary, List<MultipartPart> parts, String preamble, String epilogue) Constructs a new instance ofHttpRFC7578Multipart
with the given charset, boundary, parts, preamble, and epilogue.HttpStrictMultipart
(Charset charset, String boundary, List<MultipartPart> parts) Constructs a new instance ofHttpStrictMultipart
with the given charset, boundary, and parts.HttpStrictMultipart
(Charset charset, String boundary, List<MultipartPart> parts, String preamble, String epilogue) Constructs a new instance ofHttpStrictMultipart
with the given charset, boundary, parts, preamble, and epilogue.LegacyMultipart
(Charset charset, String boundary, List<MultipartPart> parts)