Uses of Class
org.apache.hc.client5.http.entity.mime.HttpMultipartMode
-
Packages that use HttpMultipartMode Package Description org.apache.hc.client5.http.entity.mime MIME coded HTTP entity implementations. -
-
Uses of HttpMultipartMode in org.apache.hc.client5.http.entity.mime
Fields in org.apache.hc.client5.http.entity.mime declared as HttpMultipartMode Modifier and Type Field Description private HttpMultipartModeFormBodyPartBuilder. modeThe multipart mode determining how filenames are encoded in theContent-Dispositionheader, defaults toSTRICT.private HttpMultipartModeHttpRFC7578Multipart. modeprivate HttpMultipartModeMultipartEntityBuilder. modeMethods in org.apache.hc.client5.http.entity.mime that return HttpMultipartMode Modifier and Type Method Description static HttpMultipartModeHttpMultipartMode. valueOf(java.lang.String name)Returns 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 HttpMultipartMode Modifier and Type Method Description static FormBodyPartBuilderFormBodyPartBuilder. create(java.lang.String name, ContentBody body, HttpMultipartMode mode)Creates a new builder instance with the specified name, content body, and multipart mode.MultipartEntityBuilderMultipartEntityBuilder. setMode(HttpMultipartMode mode)Constructors in org.apache.hc.client5.http.entity.mime with parameters of type HttpMultipartMode Constructor Description FormBodyPartBuilder(java.lang.String name, ContentBody body, HttpMultipartMode mode)HttpRFC7578Multipart(java.nio.charset.Charset charset, java.lang.String boundary, java.util.List<MultipartPart> parts, java.lang.String preamble, java.lang.String epilogue, HttpMultipartMode mode)Constructs a new instance ofHttpRFC7578Multipartwith the given charset, boundary, parts, preamble, and epilogue.HttpRFC7578Multipart(java.nio.charset.Charset charset, java.lang.String boundary, java.util.List<MultipartPart> parts, HttpMultipartMode mode)Constructs a new instance ofHttpRFC7578Multipartwith the given charset, boundary, and parts.
-