public enum ExitEvent extends java.lang.Enum<ExitEvent>
eventFired()
method of the CICSRequestExit
.Enum Constant and Description |
---|
Command
This exit point fires when the Gateway daemon receives an
administration request for the CICS request exit and
includes a command string
|
ShutDown
This exit point fires just after the CICSRequestExit is
disabled at the shutdown of the Gateway daemon.
|
Modifier and Type | Method and Description |
---|---|
static ExitEvent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExitEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExitEvent ShutDown
public static final ExitEvent Command
public static ExitEvent[] values()
for (ExitEvent c : ExitEvent.values()) System.out.println(c);
public static ExitEvent 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