|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FormMethod>
com.smartgwt.client.types.FormMethod
public enum FormMethod
Form METHOD parameters - how the form fields are submitted to the server
Enum Constant Summary | |
---|---|
GET
GET request -- URL encoding (~4K max) |
|
POST
POST request -- separate field encoding (no max) |
Method Summary | |
---|---|
java.lang.String |
getValue()
|
static FormMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static FormMethod[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FormMethod GET
public static final FormMethod POST
Method Detail |
---|
public static final FormMethod[] values()
for(FormMethod c : FormMethod.values()) System.out.println(c);
public static FormMethod 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 namepublic java.lang.String getValue()
getValue
in interface ValueEnum
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |