com.ibm.cics.server
Class ConversationState

java.lang.Object
  extended by com.ibm.cics.server.ConversationState

public class ConversationState
extends java.lang.Object

This class implements an enumeration representing the different states in which an APPC conversation can be.

Since CICS TS version:
1.3
Since package version:
1.0

Field Summary
static ConversationState ALLOCATED
          The ALLOCATED state * @since /** The ALLOCATED state * @since.cics 1.3
static ConversationState CONFFREE
          The CONFFREE state * @since /** The CONFFREE state * @since.cics 1.3
static ConversationState CONFRECEIVE
          The CONFRECEIVE state * @since /** The CONFRECEIVE state * @since.cics 1.3
static ConversationState CONFSEND
          The CONFSEND state * @since /** The CONFSEND state * @since.cics 1.3
static ConversationState FREE
          The FREE state * @since /** The FREE state * @since.cics 1.3
static ConversationState NOTALLOCATED
          The NOTALLOCATED state * @since /** The NOTALLOCATED state * @since.cics 1.3
static ConversationState PENDFREE
          The PENDFREE state * @since /** The PENDFREE state * @since.cics 1.3
static ConversationState PENDRECEIVE
          The PENDRECEIVE state * @since /** The PENDRECEIVE state * @since.cics 1.3
static ConversationState RECEIVE
          The RECEIVE state * @since /** The RECEIVE state * @since.cics 1.3
static ConversationState ROLLBACK
          The ROLLBACK state * @since /** The ROLLBACK state * @since.cics 1.3
static ConversationState SEND
          The SEND state * @since /** The SEND state * @since.cics 1.3
static ConversationState SYNCFREE
          The SYNCFREE state * @since /** The SYNCFREE state * @since.cics 1.3
static ConversationState SYNCRECEIVE
          The SYNCRECEIVE state * @since /** The SYNCRECEIVE state * @since.cics 1.3
static ConversationState SYNCSEND
          The SYNCSEND state * @since /** The SYNCSEND state * @since.cics 1.3
 
Method Summary
 boolean equals(java.lang.Object obj)
           
 int hashCode()
           
static ConversationState lookup(int value)
          Return the state object constant associated with a state name
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

NOTALLOCATED

public static final ConversationState NOTALLOCATED
The NOTALLOCATED state * @since /** The NOTALLOCATED state * @since.cics 1.3


ALLOCATED

public static final ConversationState ALLOCATED
The ALLOCATED state * @since /** The ALLOCATED state * @since.cics 1.3


CONFFREE

public static final ConversationState CONFFREE
The CONFFREE state * @since /** The CONFFREE state * @since.cics 1.3


CONFRECEIVE

public static final ConversationState CONFRECEIVE
The CONFRECEIVE state * @since /** The CONFRECEIVE state * @since.cics 1.3


CONFSEND

public static final ConversationState CONFSEND
The CONFSEND state * @since /** The CONFSEND state * @since.cics 1.3


FREE

public static final ConversationState FREE
The FREE state * @since /** The FREE state * @since.cics 1.3


PENDFREE

public static final ConversationState PENDFREE
The PENDFREE state * @since /** The PENDFREE state * @since.cics 1.3


PENDRECEIVE

public static final ConversationState PENDRECEIVE
The PENDRECEIVE state * @since /** The PENDRECEIVE state * @since.cics 1.3


RECEIVE

public static final ConversationState RECEIVE
The RECEIVE state * @since /** The RECEIVE state * @since.cics 1.3


ROLLBACK

public static final ConversationState ROLLBACK
The ROLLBACK state * @since /** The ROLLBACK state * @since.cics 1.3


SEND

public static final ConversationState SEND
The SEND state * @since /** The SEND state * @since.cics 1.3


SYNCFREE

public static final ConversationState SYNCFREE
The SYNCFREE state * @since /** The SYNCFREE state * @since.cics 1.3


SYNCRECEIVE

public static final ConversationState SYNCRECEIVE
The SYNCRECEIVE state * @since /** The SYNCRECEIVE state * @since.cics 1.3


SYNCSEND

public static final ConversationState SYNCSEND
The SYNCSEND state * @since /** The SYNCSEND state * @since.cics 1.3

Method Detail

equals

public boolean equals(java.lang.Object obj)
Overrides:
equals in class java.lang.Object
See Also:
Object.equals(java.lang.Object)
Since CICS TS version:
1.3
Since package version:
1.0

hashCode

public int hashCode()
Overrides:
hashCode in class java.lang.Object
See Also:
Object.hashCode()
Since CICS TS version:
1.3
Since package version:
1.0

lookup

public static ConversationState lookup(int value)
Return the state object constant associated with a state name

Parameters:
value - the state constant as an int
Returns:
the conversation state static object for that state
Since CICS TS version:
1.3
Since package version:
1.0

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object
See Also:
Object.toString()
Since CICS TS version:
1.3
Since package version:
1.0