Module org.apache.wicket.core
Enum Class AjaxRequestAttributes.EventPropagation
java.lang.Object
java.lang.Enum<AjaxRequestAttributes.EventPropagation>
org.apache.wicket.ajax.attributes.AjaxRequestAttributes.EventPropagation
- All Implemented Interfaces:
Serializable
,Comparable<AjaxRequestAttributes.EventPropagation>
,Constable
- Enclosing class:
- AjaxRequestAttributes
public static enum AjaxRequestAttributes.EventPropagation
extends Enum<AjaxRequestAttributes.EventPropagation>
The JavaScript event propagation type
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDo not stop the propagation of the JavaScript eventStops the propagation of the JavaScript event to the parent of its targetStops the propagation of the JavaScript event to the parent of its target and all other event listeners registered on the same target -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STOP
Stops the propagation of the JavaScript event to the parent of its target -
STOP_IMMEDIATE
Stops the propagation of the JavaScript event to the parent of its target and all other event listeners registered on the same target -
BUBBLE
Do not stop the propagation of the JavaScript event
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-