public enum MultipartState extends java.lang.Enum<MultipartState>
| Enum Constant and Description |
|---|
CONTENT |
DONE |
POST_CONTENT |
PRE_CONTENT |
| Modifier and Type | Method and Description |
|---|---|
static MultipartState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MultipartState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultipartState PRE_CONTENT
public static final MultipartState CONTENT
public static final MultipartState POST_CONTENT
public static final MultipartState DONE
public static MultipartState[] values()
for (MultipartState c : MultipartState.values()) System.out.println(c);
public static MultipartState valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2018. All Rights Reserved.