|
Cytoscape 2.6.2 (c) 2006,2007 ISB, MSKCC, UCSD | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcytoscape.visual.mappings.BoundaryRangeValues
public class BoundaryRangeValues
This class defines a data object representing the range values associated with a particular domain value, called a boundary value. The domain value is not stored here, since objects of this class are intended to be used as the values in a map where the domain value is the key. Three values must be specified for each boundary value. The lesserValue field is used for interpolation upon smaller domain values; the greaterValue field is used for interpolation upon larger domain values; and the equalValue field is used when the domain value is exactly equal to the associated boundary domain value. This distinction is needed to support different ranges of interpolation above and below the same domain value, plus allow a distinctly different value for exact matches.
Field Summary | |
---|---|
Object |
equalValue
|
Object |
greaterValue
|
Object |
lesserValue
|
Constructor Summary | |
---|---|
BoundaryRangeValues()
Creates a new BoundaryRangeValues object. |
|
BoundaryRangeValues(BoundaryRangeValues original)
Creates a new BoundaryRangeValues object. |
|
BoundaryRangeValues(Object lesser,
Object equal,
Object greater)
Creates a new BoundaryRangeValues object. |
Method Summary | |
---|---|
String |
toString()
DOCUMENT ME! |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public Object lesserValue
public Object equalValue
public Object greaterValue
Constructor Detail |
---|
public BoundaryRangeValues()
public BoundaryRangeValues(Object lesser, Object equal, Object greater)
lesser
- Object used for values less than this point.equal
- Object used for value equal to this point.greater
- Object used for values greater than this point.public BoundaryRangeValues(BoundaryRangeValues original)
original
- DOCUMENT ME!Method Detail |
---|
public String toString()
toString
in class Object
|
www.cytoscape.org | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |