|
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<TransactionType>
com.ibm.ctg.monitoring.TransactionType
public enum TransactionType
Flows on a request can be part of different transactions. This enumeration defines
the type of transaction for this FlowType
.
Enum Constant Summary | |
---|---|
ExtendedMode
Part of an extended mode transaction. |
|
None
Not part of any extended flow. |
|
Synconreturn
ECI SYNCONRETURN transaction. |
|
Unknown
Transaction type that is not yet defined. |
|
Xa
Part of an XA transaction. |
Method Summary | |
---|---|
static TransactionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TransactionType[] |
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 TransactionType Unknown
public static final TransactionType None
public static final TransactionType Synconreturn
public static final TransactionType Xa
public static final TransactionType ExtendedMode
Method Detail |
---|
public static final TransactionType[] values()
for(TransactionType c : TransactionType.values()) System.out.println(c);
public static TransactionType 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 |