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