org.apache.wicket.ajax.attributes
Enum AjaxAttributeName

java.lang.Object
  extended by java.lang.Enum<AjaxAttributeName>
      extended by 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
AFTER_HANDLER
          after handler (ah)
BEFORE_HANDLER
          before handler (bh)
BEFORE_SEND_HANDLER
          before send handler (bsh)
CHANNEL
          channel (ch)
COMPLETE_HANDLER
          complete handler (coh)
DATATYPE
          datatype (dt)
DYNAMIC_PARAMETER_FUNCTION
          dynamic parameters (dep)
EVENT_NAME
          event name (e)
EVENT_PROPAGATION
          stop propagation
EXTRA_PARAMETERS
          extra parameters (ep)
FAILURE_HANDLER
          failure handler (fh)
FORM_ID
          form id (f)
INDICATOR_ID
          the indicator id, if any found (i)
IS_ALLOW_DEFAULT
          allow default
IS_ASYNC
          is async (async)
IS_MULTIPART
          is multipart (mp)
IS_WICKET_AJAX_RESPONSE
          is wicket ajax response (wr)
MARKUP_ID
          markup id of behavior attached component (c)
METHOD
          http method (m)
PRECONDITION
          precondition (pre)
REQUEST_TIMEOUT
          request timeout (rt)
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
 String jsonName()
          the json parameter name
 String 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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

THROTTLING

public static final AjaxAttributeName THROTTLING
throttling settings (tr)

See Also:
AjaxRequestAttributes.getThrottlingSettings()

THROTTLING_POSTPONE_ON_UPDATE

public static final AjaxAttributeName THROTTLING_POSTPONE_ON_UPDATE
throttling - postpone timer on upate (p)

See Also:
ThrottlingSettings.getPostponeTimerOnUpdate()

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)

See Also:
AjaxRequestAttributes.isWicketAjaxResponse()

REQUEST_TIMEOUT

public static final AjaxAttributeName REQUEST_TIMEOUT
request timeout (rt)

See Also:
AjaxRequestAttributes.getRequestTimeout()

IS_ALLOW_DEFAULT

public static final AjaxAttributeName IS_ALLOW_DEFAULT
allow default

See Also:
AjaxRequestAttributes.isAllowDefault()

EVENT_PROPAGATION

public static final AjaxAttributeName EVENT_PROPAGATION
stop propagation

See Also:
AjaxRequestAttributes.setEventPropagation(org.apache.wicket.ajax.attributes.AjaxRequestAttributes.EventPropagation)

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)

See Also:
AjaxRequestAttributes.getDynamicExtraParameters()

EXTRA_PARAMETERS

public static final AjaxAttributeName EXTRA_PARAMETERS
extra parameters (ep)

See Also:
AjaxRequestAttributes.getExtraParameters()

PRECONDITION

public static final AjaxAttributeName PRECONDITION
precondition (pre)

See Also:
AjaxCallListener.getPrecondition(org.apache.wicket.Component)

COMPLETE_HANDLER

public static final AjaxAttributeName COMPLETE_HANDLER
complete handler (coh)

See Also:
AjaxCallListener.getCompleteHandler(org.apache.wicket.Component)

FAILURE_HANDLER

public static final AjaxAttributeName FAILURE_HANDLER
failure handler (fh)

See Also:
AjaxCallListener.getFailureHandler(org.apache.wicket.Component)

SUCCESS_HANDLER

public static final AjaxAttributeName SUCCESS_HANDLER
success handler (sh)

See Also:
AjaxCallListener.getSuccessHandler(org.apache.wicket.Component)

AFTER_HANDLER

public static final AjaxAttributeName AFTER_HANDLER
after handler (ah)

See Also:
AjaxCallListener.getAfterHandler(org.apache.wicket.Component)

BEFORE_SEND_HANDLER

public static final AjaxAttributeName BEFORE_SEND_HANDLER
before send handler (bsh)

See Also:
AjaxCallListener.getBeforeSendHandler(org.apache.wicket.Component)

BEFORE_HANDLER

public static final AjaxAttributeName BEFORE_HANDLER
before handler (bh)

See Also:
AjaxCallListener.getBeforeHandler(org.apache.wicket.Component)

INDICATOR_ID

public static final AjaxAttributeName INDICATOR_ID
the indicator id, if any found (i)

See Also:
AbstractDefaultAjaxBehavior.findIndicatorId()

SUBMITTING_COMPONENT_NAME

public static final AjaxAttributeName SUBMITTING_COMPONENT_NAME
submitting component name (sc)

See Also:
AjaxRequestAttributes.getSubmittingComponentName()

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 Also:
AbstractDefaultAjaxBehavior.renderAjaxAttributes(org.apache.wicket.Component)

METHOD

public static final AjaxAttributeName METHOD
http method (m)

See Also:
AjaxRequestAttributes.getMethod()

URL

public static final AjaxAttributeName URL
See Also:
AbstractAjaxBehavior.getCallbackUrl();
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 name
NullPointerException - if the argument is null

jsonName

public String jsonName()
the json parameter name

Returns:
as string

toString

public String toString()
Overrides:
toString in class Enum<AjaxAttributeName>


Copyright © 2006-2013 Apache Software Foundation. All Rights Reserved.