Enum AjaxAttributeName
- java.lang.Object
-
- java.lang.Enum<AjaxAttributeName>
-
- org.apache.wicket.ajax.attributes.AjaxAttributeName
-
- All Implemented Interfaces:
Serializable
,Comparable<AjaxAttributeName>
public enum AjaxAttributeName extends Enum<AjaxAttributeName>
ajax attribute names- Author:
- mosmann
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AFTER_HANDLER
after handler (ah)BEFORE_HANDLER
before handler (bh)BEFORE_SEND_HANDLER
before send handler (bsh)CHANNEL
channel (ch)CHILD_SELECTOR
COMPLETE_HANDLER
complete handler (coh)DATATYPE
datatype (dt)DONE_HANDLER
done handler (dh)DYNAMIC_PARAMETER_FUNCTION
dynamic parameters (dep)EVENT_NAME
event name (e)EVENT_PROPAGATION
stop propagationEXTRA_PARAMETERS
extra parameters (ep)FAILURE_HANDLER
failure handler (fh)FORM_ID
form id (f)INDICATOR_ID
the indicator id, if any found (i) See AbstractDefaultAjaxBehavior#findIndicatorId()INIT_HANDLER
init handler (ih)IS_ASYNC
is async (async)IS_MULTIPART
is multipart (mp)IS_PREVENT_DEFAULT
allow defaultIS_WICKET_AJAX_RESPONSE
is wicket ajax response (wr)MARKUP_ID
markup id of behavior attached component (c) See AbstractDefaultAjaxBehavior#renderAjaxAttributes(Component)METHOD
http method (m)PRECONDITION
precondition (pre)REQUEST_TIMEOUT
request timeout (rt)SERIALIZE_RECURSIVELY
SUBMITTING_COMPONENT_NAME
submitting component name (sc)SUCCESS_HANDLER
success handler (sh)THROTTLING
throttling settings (tr)THROTTLING_DELAY
throttling - delay (d)THROTTLING_ID
throttling - id (id)THROTTLING_POSTPONE_ON_UPDATE
throttling - postpone timer on upate (p)URL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
jsonName()
the json parameter nameString
toString()
static AjaxAttributeName
valueOf(String name)
Returns the enum constant of this type with the specified name.static AjaxAttributeName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
THROTTLING
public static final AjaxAttributeName THROTTLING
throttling settings (tr)
-
THROTTLING_POSTPONE_ON_UPDATE
public static final AjaxAttributeName THROTTLING_POSTPONE_ON_UPDATE
throttling - postpone timer on upate (p)
-
THROTTLING_DELAY
public static final AjaxAttributeName THROTTLING_DELAY
throttling - delay (d)- See Also:
ThrottlingSettings.getDelay()
-
THROTTLING_ID
public static final AjaxAttributeName THROTTLING_ID
throttling - id (id)- See Also:
ThrottlingSettings.getId()
-
DATATYPE
public static final AjaxAttributeName DATATYPE
datatype (dt)- See Also:
AjaxRequestAttributes.getDataType()
-
IS_WICKET_AJAX_RESPONSE
public static final AjaxAttributeName IS_WICKET_AJAX_RESPONSE
is wicket ajax response (wr)
-
REQUEST_TIMEOUT
public static final AjaxAttributeName REQUEST_TIMEOUT
request timeout (rt)
-
IS_PREVENT_DEFAULT
public static final AjaxAttributeName IS_PREVENT_DEFAULT
allow default- See Also:
AjaxRequestAttributes.isPreventDefault()
-
EVENT_PROPAGATION
public static final AjaxAttributeName EVENT_PROPAGATION
stop propagation
-
CHANNEL
public static final AjaxAttributeName CHANNEL
channel (ch)- See Also:
AjaxRequestAttributes.getChannel()
-
EVENT_NAME
public static final AjaxAttributeName EVENT_NAME
event name (e)- See Also:
AjaxRequestAttributes.getEventNames()
-
IS_ASYNC
public static final AjaxAttributeName IS_ASYNC
is async (async)- See Also:
AjaxRequestAttributes.isAsynchronous()
-
DYNAMIC_PARAMETER_FUNCTION
public static final AjaxAttributeName DYNAMIC_PARAMETER_FUNCTION
dynamic parameters (dep)
-
EXTRA_PARAMETERS
public static final AjaxAttributeName EXTRA_PARAMETERS
extra parameters (ep)
-
PRECONDITION
public static final AjaxAttributeName PRECONDITION
precondition (pre)
-
COMPLETE_HANDLER
public static final AjaxAttributeName COMPLETE_HANDLER
complete handler (coh)
-
FAILURE_HANDLER
public static final AjaxAttributeName FAILURE_HANDLER
failure handler (fh)
-
SUCCESS_HANDLER
public static final AjaxAttributeName SUCCESS_HANDLER
success handler (sh)
-
AFTER_HANDLER
public static final AjaxAttributeName AFTER_HANDLER
after handler (ah)
-
BEFORE_SEND_HANDLER
public static final AjaxAttributeName BEFORE_SEND_HANDLER
before send handler (bsh)
-
BEFORE_HANDLER
public static final AjaxAttributeName BEFORE_HANDLER
before handler (bh)
-
INIT_HANDLER
public static final AjaxAttributeName INIT_HANDLER
init handler (ih)
-
DONE_HANDLER
public static final AjaxAttributeName DONE_HANDLER
done handler (dh)
-
INDICATOR_ID
public static final AjaxAttributeName INDICATOR_ID
the indicator id, if any found (i) See AbstractDefaultAjaxBehavior#findIndicatorId()
-
SUBMITTING_COMPONENT_NAME
public static final AjaxAttributeName SUBMITTING_COMPONENT_NAME
submitting component name (sc)
-
IS_MULTIPART
public static final AjaxAttributeName IS_MULTIPART
is multipart (mp)- See Also:
AjaxRequestAttributes.isMultipart()
-
FORM_ID
public static final AjaxAttributeName FORM_ID
form id (f)- See Also:
AjaxRequestAttributes.getFormId()
-
MARKUP_ID
public static final AjaxAttributeName MARKUP_ID
markup id of behavior attached component (c) See AbstractDefaultAjaxBehavior#renderAjaxAttributes(Component)
-
METHOD
public static final AjaxAttributeName METHOD
http method (m)- See Also:
AjaxRequestAttributes.getMethod()
-
URL
public static final AjaxAttributeName URL
- See Also:
AbstractAjaxBehavior.getCallbackUrl()
-
CHILD_SELECTOR
public static final AjaxAttributeName CHILD_SELECTOR
-
SERIALIZE_RECURSIVELY
public static final AjaxAttributeName SERIALIZE_RECURSIVELY
-
-
Method Detail
-
values
public static AjaxAttributeName[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AjaxAttributeName c : AjaxAttributeName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AjaxAttributeName valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<AjaxAttributeName>
-
-