Uses of Enum
org.apache.hc.client5.http.entity.mime.HttpMultipartMode
Packages that use HttpMultipartMode
-
Uses of HttpMultipartMode in org.apache.hc.client5.http.entity.mime
Subclasses with type arguments of type HttpMultipartMode in org.apache.hc.client5.http.entity.mimeFields in org.apache.hc.client5.http.entity.mime declared as HttpMultipartModeModifier and TypeFieldDescriptionprivate HttpMultipartModeFormBodyPartBuilder.modeThe multipart mode determining how filenames are encoded in theContent-Dispositionheader, defaults toHttpMultipartMode.STRICT.private final HttpMultipartModeHttpRFC7578Multipart.modeprivate HttpMultipartModeMultipartEntityBuilder.modeMethods in org.apache.hc.client5.http.entity.mime that return HttpMultipartModeModifier and TypeMethodDescriptionstatic HttpMultipartModeReturns the enum constant of this type with the specified name.static HttpMultipartMode[]HttpMultipartMode.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.hc.client5.http.entity.mime with parameters of type HttpMultipartModeModifier and TypeMethodDescriptionstatic FormBodyPartBuilderFormBodyPartBuilder.create(String name, ContentBody body, HttpMultipartMode mode) Creates a new builder instance with the specified name, content body, and multipart mode.MultipartEntityBuilder.setMode(HttpMultipartMode mode) Constructors in org.apache.hc.client5.http.entity.mime with parameters of type HttpMultipartModeModifierConstructorDescription(package private)FormBodyPartBuilder(String name, ContentBody body, HttpMultipartMode mode) HttpRFC7578Multipart(Charset charset, String boundary, List<MultipartPart> parts, String preamble, String epilogue, HttpMultipartMode mode) Constructs a new instance ofHttpRFC7578Multipartwith the given charset, boundary, parts, preamble, and epilogue.HttpRFC7578Multipart(Charset charset, String boundary, List<MultipartPart> parts, HttpMultipartMode mode) Constructs a new instance ofHttpRFC7578Multipartwith the given charset, boundary, and parts.