toolkit.db.api
Class SubLinkInfo

java.lang.Object
  extended by toolkit.db.api.SubLinkInfo

public class SubLinkInfo
extends java.lang.Object

class SubLinkInfo wraps all info of related sub-links.


Method Summary
 boolean equals(java.lang.Object obj)
          Compares this SubLinkInfo with the specified object.
 java.lang.String getOperator()
          Get the value of operator.
 ColumnInfo getSubColumn()
          Get the ColumnInfo of this SubLinkInfo.
 java.lang.String getValue()
          Get value of this SubLinkInfo, represented in string.
 java.lang.String toString()
          Returns a string representing this SubLinkInfo's values.
 
Methods inherited from class java.lang.Object
getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Method Detail

getSubColumn

public ColumnInfo getSubColumn()
Get the ColumnInfo of this SubLinkInfo.

Returns:
the columnInfo of this SubLinkInfo.

getOperator

public java.lang.String getOperator()
Get the value of operator.

Returns:
the operator value

getValue

public java.lang.String getValue()
Get value of this SubLinkInfo, represented in string.

Returns:
parameter value text

equals

public boolean equals(java.lang.Object obj)
Compares this SubLinkInfo with the specified object.

Overrides:
equals in class java.lang.Object
Returns:
true if the SubLinkInfo i same; false otherwise.

toString

public java.lang.String toString()
Returns a string representing this SubLinkInfo's values. The format is as follows:

  className@hashCode[ columnMappingName | operator | value ]
        

Overrides:
toString in class java.lang.Object
Returns:
a string representing this SubLinkInfo.