public static enum GatewayIntercept.InterceptAction extends java.lang.Enum<GatewayIntercept.InterceptAction>
JavaGateway
method call should continue as normal
or be intercepted.Enum Constant and Description |
---|
Continue
The method call should continue as normal.
|
Return
The method call should be intercepted.
|
Modifier and Type | Method and Description |
---|---|
static GatewayIntercept.InterceptAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GatewayIntercept.InterceptAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GatewayIntercept.InterceptAction Continue
public static final GatewayIntercept.InterceptAction Return
public static GatewayIntercept.InterceptAction[] values()
for (GatewayIntercept.InterceptAction c : GatewayIntercept.InterceptAction.values()) System.out.println(c);
public static GatewayIntercept.InterceptAction valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null