Enum Class InterceptionPhase
- All Implemented Interfaces:
Serializable,Comparable<InterceptionPhase>,Constable
Describes various interception phases during a call.
- Version:
- $Id: $Id
- Author:
- lrosenberg
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAfter the servant is called by the skeleton on the server side.After the service is called by the stub on the client side.Before the servant is called by the skeleton on the server side.Before the service is called by the stub on the client side. -
Method Summary
Modifier and TypeMethodDescriptionstatic InterceptionPhaseReturns the enum constant of this class with the specified name.static InterceptionPhase[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BEFORE_SERVANT_CALL
Before the servant is called by the skeleton on the server side. -
BEFORE_SERVICE_CALL
Before the service is called by the stub on the client side. -
AFTER_SERVICE_CALL
After the service is called by the stub on the client side. -
AFTER_SERVANT_CALL
After the servant is called by the skeleton on the server side.
-
-
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
-