Enum AjaxAttributeName
- java.lang.Object
-
- java.lang.Enum<AjaxAttributeName>
-
- org.apache.wicket.ajax.attributes.AjaxAttributeName
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AjaxAttributeName>
public enum AjaxAttributeName extends java.lang.Enum<AjaxAttributeName>
ajax attribute names- Author:
- mosmann
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AFTER_HANDLERafter handler (ah)BEFORE_HANDLERbefore handler (bh)BEFORE_SEND_HANDLERbefore send handler (bsh)CHANNELchannel (ch)CHILD_SELECTORCOMPLETE_HANDLERcomplete handler (coh)DATATYPEdatatype (dt)DONE_HANDLERdone handler (dh)DYNAMIC_PARAMETER_FUNCTIONdynamic parameters (dep)EVENT_NAMEevent name (e)EVENT_PROPAGATIONstop propagationEXTRA_PARAMETERSextra parameters (ep)FAILURE_HANDLERfailure handler (fh)FORM_IDform id (f)INDICATOR_IDthe indicator id, if any found (i)INIT_HANDLERinit handler (ih)IS_ASYNCis async (async)IS_MULTIPARTis multipart (mp)IS_PREVENT_DEFAULTallow defaultIS_WICKET_AJAX_RESPONSEis wicket ajax response (wr)MARKUP_IDmarkup id of behavior attached component (c)METHODhttp method (m)PRECONDITIONprecondition (pre)REQUEST_TIMEOUTrequest timeout (rt)SERIALIZE_RECURSIVELYSUBMITTING_COMPONENT_NAMEsubmitting component name (sc)SUCCESS_HANDLERsuccess handler (sh)THROTTLINGthrottling settings (tr)THROTTLING_DELAYthrottling - delay (d)THROTTLING_IDthrottling - id (id)THROTTLING_POSTPONE_ON_UPDATEthrottling - postpone timer on upate (p)URL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringjsonName()the json parameter namejava.lang.StringtoString()static AjaxAttributeNamevalueOf(java.lang.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)
-
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)
-
METHOD
public static final AjaxAttributeName METHOD
http method (m)- See Also:
AjaxRequestAttributes.getMethod()
-
URL
public static final AjaxAttributeName URL
-
CHILD_SELECTOR
public static final AjaxAttributeName CHILD_SELECTOR
- See Also:
AjaxRequestAttributes.childSelector
-
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(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
jsonName
public java.lang.String jsonName()
the json parameter name- Returns:
- as string
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<AjaxAttributeName>
-
-