|
CICS® Transaction Gateway Programming Reference v1.1.0.0 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<RequestType>
com.ibm.ctg.monitoring.RequestType
public enum RequestType
Flows on a request can carry different types of work. This Enum defines
the type of work for this FlowType
.
Enum Constant Summary | |
---|---|
Control
Control flow no related work. |
|
Eci
Work related to an ECI request. |
|
Unknown
Work related to an undefined request. |
Method Summary | |
---|---|
static RequestType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static RequestType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final RequestType Unknown
public static final RequestType Eci
public static final RequestType Control
Method Detail |
---|
public static final RequestType[] values()
for(RequestType c : RequestType.values()) System.out.println(c);
public static RequestType 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 name
|
©Copyright IBM Corp. 1994, 2014 Legal |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |