public enum ExtDirectMethodType extends java.lang.Enum<ExtDirectMethodType>
| Enum Constant and Description |
|---|
FORM_LOAD
Specifies a method that handles a form load
|
FORM_POST
Specifies a method that handles a form post (with or without upload)
|
POLL
Specifies a method that handles polling
|
SIMPLE
Specifies a simple remote method
|
SIMPLE_NAMED
Specifies a simple remote method with named parameters
|
STORE_MODIFY
Specifies a method that handles a create, update or delete call from
DirectStore
|
STORE_READ
Specifies a method that handles a read call from DirectStore
|
TREE_LOAD
Specifies a method that handles a read call from a TreeLoader
|
TREE_LOADER
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static ExtDirectMethodType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExtDirectMethodType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtDirectMethodType SIMPLE
public static final ExtDirectMethodType SIMPLE_NAMED
public static final ExtDirectMethodType FORM_LOAD
public static final ExtDirectMethodType STORE_READ
public static final ExtDirectMethodType STORE_MODIFY
public static final ExtDirectMethodType FORM_POST
public static final ExtDirectMethodType TREE_LOAD
@Deprecated public static final ExtDirectMethodType TREE_LOADER
public static final ExtDirectMethodType POLL
public static ExtDirectMethodType[] values()
for (ExtDirectMethodType c : ExtDirectMethodType.values()) System.out.println(c);
public static ExtDirectMethodType 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 nullCopyright © 2010-2012. All Rights Reserved.