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 TypeClassDescriptionclassFormBodyPart 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.multipartPartsprivate final List<MultipartPart> HttpRFC6532Multipart.partsprivate final List<MultipartPart> HttpRFC7578Multipart.partsprivate final List<MultipartPart> HttpStrictMultipart.partsprivate final List<MultipartPart> LegacyMultipart.partsMethods 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 voidAbstractMultipartFormat.formatMultipartHeader(MultipartPart part, OutputStream out) Write the multipart header fields; depends on the style.protected voidHttpRFC6532Multipart.formatMultipartHeader(MultipartPart part, OutputStream out) protected voidHttpRFC7578Multipart.formatMultipartHeader(MultipartPart part, OutputStream out) protected voidHttpStrictMultipart.formatMultipartHeader(MultipartPart part, OutputStream out) protected voidLegacyMultipart.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 ofHttpRFC6532Multipartwith 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 ofHttpRFC7578Multipartwith the given charset, boundary, and parts.HttpRFC7578Multipart(Charset charset, String boundary, List<MultipartPart> parts, String preamble, String epilogue) Constructs a new instance ofHttpRFC7578Multipartwith the given charset, boundary, parts, preamble, and epilogue.HttpStrictMultipart(Charset charset, String boundary, List<MultipartPart> parts) Constructs a new instance ofHttpStrictMultipartwith the given charset, boundary, and parts.HttpStrictMultipart(Charset charset, String boundary, List<MultipartPart> parts, String preamble, String epilogue) Constructs a new instance ofHttpStrictMultipartwith the given charset, boundary, parts, preamble, and epilogue.LegacyMultipart(Charset charset, String boundary, List<MultipartPart> parts)