public enum HttpMultipartMode extends Enum<HttpMultipartMode>
Enum Constant and Description |
---|
BROWSER_COMPATIBLE
browser-compatible mode, i.e.
|
RFC6532
RFC 6532 compliant
|
STRICT
RFC 822, RFC 2045, RFC 2046 compliant
|
Modifier and Type | Method and Description |
---|---|
static HttpMultipartMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpMultipartMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpMultipartMode STRICT
public static final HttpMultipartMode BROWSER_COMPATIBLE
public static final HttpMultipartMode RFC6532
public static HttpMultipartMode[] values()
for (HttpMultipartMode c : HttpMultipartMode.values()) System.out.println(c);
public static HttpMultipartMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 1999–2022 The Apache Software Foundation. All rights reserved.