Package org.cytoscape.view.model
Class DiscreteRange<T>
java.lang.Object
org.cytoscape.view.model.DiscreteRange<T>
- Type Parameters:
T- The generic type of this DiscreteRange.
- All Implemented Interfaces:
Range<T>
Defines a discrete range of values for
VisualPropertys.Module: viewmodel-api
To use this in your app, include the following dependency in your POM:
<dependency>
<groupId>org.cytoscape</groupId>
<artifactId>viewmodel-api</artifactId>
</dependency>Cytoscape Backwards Compatibility (API Interface): We expect that this interface will be used but not implemented by developers using this interface. As such, we reserve the right to add methods to the interface as part of minor version upgrades. We will not remove methods for any changes other than major version upgrades.
-
Constructor Summary
ConstructorsConstructorDescriptionDiscreteRange(Class<T> type, Set<T> values) Constructor for this DiscreteRange. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddRangeValue(T newValue) Add a value to this DiscreteRange.getType()Type of object used in this range.booleanReturn true if the given value is in the range defined in this class.booleanIf this range is a set of discrete values, return true.values()Returns a Set of all the values for this DiscreteRange.
-
Constructor Details
-
DiscreteRange
Constructor for this DiscreteRange.- Parameters:
type- the type of this DiscreteRange.values- the initial values of this DiscreteRange.
-
-
Method Details
-
getType
Description copied from interface:RangeType of object used in this range. -
isDiscrete
public boolean isDiscrete()Description copied from interface:RangeIf this range is a set of discrete values, return true.- Specified by:
isDiscretein interfaceRange<T>- Returns:
- If discrete, return true.
-
values
Returns a Set of all the values for this DiscreteRange.- Returns:
- a Set of all the values for this DiscreteRange.
-
addRangeValue
Add a value to this DiscreteRange.- Parameters:
newValue- the value to add to the range.
-
inRange
Description copied from interface:RangeReturn true if the given value is in the range defined in this class.
-