public enum EnctypeEnum extends java.lang.Enum<EnctypeEnum>
Enum Constant and Description |
---|
APP_X_WWW |
MULTI_FORM_DATA |
TEXT_PLAIN |
Modifier and Type | Method and Description |
---|---|
static EnctypeEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnctypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnctypeEnum APP_X_WWW
public static final EnctypeEnum MULTI_FORM_DATA
public static final EnctypeEnum TEXT_PLAIN
public static EnctypeEnum[] values()
for (EnctypeEnum c : EnctypeEnum.values()) System.out.println(c);
public static EnctypeEnum 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 null