public static enum AjaxChannel.Type extends Enum<AjaxChannel.Type>
AjaxChannel
Enum Constant and Description |
---|
ACTIVE
the ajax call will discarded if there is an active/running request on the same channel
|
DROP
dropping - only the last Ajax request is processed, the others are discarded
|
QUEUE
Ajax requests are kept in a Queue at the client side and processed one at a time
|
Modifier and Type | Method and Description |
---|---|
static AjaxChannel.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AjaxChannel.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AjaxChannel.Type QUEUE
public static final AjaxChannel.Type DROP
public static final AjaxChannel.Type ACTIVE
public static AjaxChannel.Type[] values()
for (AjaxChannel.Type c : AjaxChannel.Type.values()) System.out.println(c);
public static AjaxChannel.Type 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 nullCopyright © 2006–2022 Apache Software Foundation. All rights reserved.