public enum InterceptionPhase extends Enum<InterceptionPhase>
Enum Constant and Description |
---|
AFTER_SERVANT_CALL
After the servant is called by the skeleton on the server side.
|
AFTER_SERVICE_CALL
After the service is called by the stub on the client side.
|
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.
|
Modifier and Type | Method and Description |
---|---|
static InterceptionPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InterceptionPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterceptionPhase BEFORE_SERVANT_CALL
public static final InterceptionPhase BEFORE_SERVICE_CALL
public static final InterceptionPhase AFTER_SERVICE_CALL
public static final InterceptionPhase AFTER_SERVANT_CALL
public static InterceptionPhase[] values()
for (InterceptionPhase c : InterceptionPhase.values()) System.out.println(c);
public static InterceptionPhase valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2010-2014 anotheria.net. All Rights Reserved.