public static enum MultiPartParser.State extends java.lang.Enum<MultiPartParser.State>
| Enum Constant | Description |
|---|---|
BODY_PART |
|
DELIMITER |
|
DELIMITER_CLOSE |
|
DELIMITER_PADDING |
|
END |
|
EPILOGUE |
|
FIRST_OCTETS |
|
OCTETS |
|
PREAMBLE |
| Modifier and Type | Method | Description |
|---|---|---|
static MultiPartParser.State |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static MultiPartParser.State[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultiPartParser.State PREAMBLE
public static final MultiPartParser.State DELIMITER
public static final MultiPartParser.State DELIMITER_PADDING
public static final MultiPartParser.State DELIMITER_CLOSE
public static final MultiPartParser.State BODY_PART
public static final MultiPartParser.State FIRST_OCTETS
public static final MultiPartParser.State OCTETS
public static final MultiPartParser.State EPILOGUE
public static final MultiPartParser.State END
public static MultiPartParser.State[] values()
for (MultiPartParser.State c : MultiPartParser.State.values()) System.out.println(c);
public static MultiPartParser.State 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.