public static enum FormMultipartData.TransferEncoding extends Enum<FormMultipartData.TransferEncoding>
| Modifier and Type | Method and Description |
|---|---|
static FormMultipartData.TransferEncoding |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FormMultipartData.TransferEncoding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormMultipartData.TransferEncoding Binary
public static final FormMultipartData.TransferEncoding Base64
public static FormMultipartData.TransferEncoding[] values()
for (FormMultipartData.TransferEncoding c : FormMultipartData.TransferEncoding.values()) System.out.println(c);
public static FormMultipartData.TransferEncoding 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 © 2017. All rights reserved.