public static enum MultiPartParser.FieldState extends java.lang.Enum<MultiPartParser.FieldState>
| Enum Constant | Description |
|---|---|
AFTER_NAME |
|
FIELD |
|
IN_NAME |
|
IN_VALUE |
|
VALUE |
| Modifier and Type | Method | Description |
|---|---|---|
static MultiPartParser.FieldState |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static MultiPartParser.FieldState[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultiPartParser.FieldState FIELD
public static final MultiPartParser.FieldState IN_NAME
public static final MultiPartParser.FieldState AFTER_NAME
public static final MultiPartParser.FieldState VALUE
public static final MultiPartParser.FieldState IN_VALUE
public static MultiPartParser.FieldState[] values()
for (MultiPartParser.FieldState c : MultiPartParser.FieldState.values()) System.out.println(c);
public static MultiPartParser.FieldState 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 © 1995–2018 Webtide. All rights reserved.