public static enum FormPanel.Encoding extends Enum<FormPanel.Encoding>
| Enum Constant and Description |
|---|
MULTIPART |
URLENCODED |
| Modifier and Type | Method and Description |
|---|---|
String |
value() |
static FormPanel.Encoding |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FormPanel.Encoding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormPanel.Encoding MULTIPART
public static final FormPanel.Encoding URLENCODED
public static FormPanel.Encoding[] values()
for (FormPanel.Encoding c : FormPanel.Encoding.values()) System.out.println(c);
public static FormPanel.Encoding 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 nullpublic String value()
Copyright © 2012. All Rights Reserved.