protected static enum HttpPostRequestDecoder.MultiPartStatus extends Enum<HttpPostRequestDecoder.MultiPartStatus>
Enum Constant and Description |
---|
CLOSEDELIMITER |
DISPOSITION |
EPILOGUE |
FIELD |
FILEUPLOAD |
HEADERDELIMITER |
MIXEDCLOSEDELIMITER |
MIXEDDELIMITER |
MIXEDDISPOSITION |
MIXEDFILEUPLOAD |
MIXEDPREAMBLE |
NOTSTARTED |
PREAMBLE |
PREEPILOGUE |
Modifier and Type | Method and Description |
---|---|
static HttpPostRequestDecoder.MultiPartStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpPostRequestDecoder.MultiPartStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpPostRequestDecoder.MultiPartStatus NOTSTARTED
public static final HttpPostRequestDecoder.MultiPartStatus PREAMBLE
public static final HttpPostRequestDecoder.MultiPartStatus HEADERDELIMITER
public static final HttpPostRequestDecoder.MultiPartStatus DISPOSITION
public static final HttpPostRequestDecoder.MultiPartStatus FIELD
public static final HttpPostRequestDecoder.MultiPartStatus FILEUPLOAD
public static final HttpPostRequestDecoder.MultiPartStatus MIXEDPREAMBLE
public static final HttpPostRequestDecoder.MultiPartStatus MIXEDDELIMITER
public static final HttpPostRequestDecoder.MultiPartStatus MIXEDDISPOSITION
public static final HttpPostRequestDecoder.MultiPartStatus MIXEDFILEUPLOAD
public static final HttpPostRequestDecoder.MultiPartStatus MIXEDCLOSEDELIMITER
public static final HttpPostRequestDecoder.MultiPartStatus CLOSEDELIMITER
public static final HttpPostRequestDecoder.MultiPartStatus PREEPILOGUE
public static final HttpPostRequestDecoder.MultiPartStatus EPILOGUE
public static HttpPostRequestDecoder.MultiPartStatus[] values()
for (HttpPostRequestDecoder.MultiPartStatus c : HttpPostRequestDecoder.MultiPartStatus.values()) System.out.println(c);
public static HttpPostRequestDecoder.MultiPartStatus 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 © 2008–2017 The Netty Project. All rights reserved.