T
- the generic type for this BoundaryRangeValues.public final class BoundaryRangeValues<T> extends Object
Module: vizmap-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>vizmap-api</artifactId> </dependency>
Modifier and Type | Field and Description |
---|---|
T |
equalValue
Will be used when the domain value is exactly equal to the associated boundary domain value
|
T |
greaterValue
Will be used for interpolation upon larger domain values
|
T |
lesserValue
Will be used for interpolation upon smaller domain values
|
Constructor and Description |
---|
BoundaryRangeValues(BoundaryRangeValues<T> original)
Creates a new BoundaryRangeValues object.
|
BoundaryRangeValues(T lesser,
T equal,
T greater)
Creates a new BoundaryRangeValues object.
|
public final T lesserValue
public final T equalValue
public final T greaterValue
public BoundaryRangeValues(T lesser, T equal, T 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<T> original)
original
- original value.Copyright 2011-2015 Cytoscape Consortium. All rights reserved.