public static enum CicsIntercept.InterceptAction extends java.lang.Enum<CicsIntercept.InterceptAction>
Enum Constant and Description |
---|
Continue
The request should continue as normal.
|
Return
The request should be intercepted.
|
Modifier and Type | Method and Description |
---|---|
static CicsIntercept.InterceptAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CicsIntercept.InterceptAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CicsIntercept.InterceptAction Return
public static final CicsIntercept.InterceptAction Continue
public static CicsIntercept.InterceptAction[] values()
for (CicsIntercept.InterceptAction c : CicsIntercept.InterceptAction.values()) System.out.println(c);
public static CicsIntercept.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