Package org.atmosphere.interceptor
Enum InvokationOrder.PRIORITY
- All Implemented Interfaces:
Serializable,Comparable<InvokationOrder.PRIORITY>,java.lang.constant.Constable
- Enclosing interface:
InvokationOrder
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe AtmosphereInterceptor must be executed after the default set of AtmosphereInterceptorThe AtmosphereInterceptor must be executed before the default set of AtmosphereInterceptor.The AtmosphereInterceptor must be executed at first, before any AtmosphereInterceptor. -
Method Summary
Modifier and TypeMethodDescriptionstatic InvokationOrder.PRIORITYReturns the enum constant of this type with the specified name.static InvokationOrder.PRIORITY[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
AFTER_DEFAULT
The AtmosphereInterceptor must be executed after the default set of AtmosphereInterceptor -
BEFORE_DEFAULT
The AtmosphereInterceptor must be executed before the default set of AtmosphereInterceptor. You can only add one instance perAtmosphereInterceptor -
FIRST_BEFORE_DEFAULT
The AtmosphereInterceptor must be executed at first, before any AtmosphereInterceptor.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-