com.ibm.websphere.channel.framework
Class FlowType

java.lang.Object
  extended bycom.ibm.websphere.channel.framework.FlowType
All Implemented Interfaces:
java.lang.Comparable, java.io.Serializable

public class FlowType
extends java.lang.Object
implements java.lang.Comparable, java.io.Serializable

The FlowType class is an enumerated type used among the entire framework to specify whether this is Inbound or Outbound connections.

See Also:
Serialized Form

Field Summary
static FlowType INBOUND
          INBOUND (server side) FlowType.
static FlowType OUTBOUND
          OUTBOUND (client side) FlowType.
 
Method Summary
 int compareTo(java.lang.Object o)
           
static FlowType getKey(int ordinal)
          Fetch the FlowType for a particular integer.
 int getOrdinal()
          Get the ordinal of a particular FlowType.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

INBOUND

public static final FlowType INBOUND
INBOUND (server side) FlowType.


OUTBOUND

public static final FlowType OUTBOUND
OUTBOUND (client side) FlowType.

Method Detail

getKey

public static FlowType getKey(int ordinal)
Fetch the FlowType for a particular integer.

Returns:
FlowType

getOrdinal

public int getOrdinal()
Get the ordinal of a particular FlowType.

Returns:
int

compareTo

public int compareTo(java.lang.Object o)
Specified by:
compareTo in interface java.lang.Comparable
See Also:
Comparable