com.ibm.portal.propertybroker.property
Class Direction

java.lang.Object
  extended by com.ibm.portal.propertybroker.property.Direction
All Implemented Interfaces:
java.io.Serializable

public class Direction
extends java.lang.Object
implements java.io.Serializable

Typesafe enum pattern that encapsulates the direction of a Property. The direction information determines if the property is produced or consumed by a component.

Since:
5.1.0.1
See Also:
Property, Serialized Form

Field Summary
static Direction IN
          IN indicates that a component produces the property.
static Direction OUT
          OUT indicates that a component consumes the property.
 
Method Summary
 boolean equals(java.lang.Object o)
           
 int hashCode()
           
 java.lang.String toString()
          Override default
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

IN

public static final Direction IN
IN indicates that a component produces the property.


OUT

public static final Direction OUT
OUT indicates that a component consumes the property.

Method Detail

toString

public java.lang.String toString()
Override default

Overrides:
toString in class java.lang.Object

equals

public final boolean equals(java.lang.Object o)
Overrides:
equals in class java.lang.Object

hashCode

public final int hashCode()
Overrides:
hashCode in class java.lang.Object