Package org.cytoscape.equations
Class IdentDescriptor
java.lang.Object
org.cytoscape.equations.IdentDescriptor
Used to hold a current value for an equation's variable reference.
Cytoscape Backwards Compatibility (Final Class): This class is final and therefore can't be extended by users. This means that we may add methods for minor version updates. Methods will only be removed for major version updates.
Module: equations-api
To use this in your app, include the following dependency in your POM:
<dependency>
<groupId>org.cytoscape</groupId>
<artifactId>equations-api</artifactId>
</dependency>-
Constructor Summary
ConstructorsConstructorDescriptionInitializes a newIdentDescriptorand provides minimal type translation (fromIntegertoLong). -
Method Summary
-
Constructor Details
-
IdentDescriptor
Initializes a newIdentDescriptorand provides minimal type translation (fromIntegertoLong).- Parameters:
o- an object that represents a value for a variable reference- Throws:
NullPointerException- if "o" is nullIllegalArgumentException- if "o" is not aLong,Integer,Double,Booleannor aString
-
-
Method Details
-
getType
Returns the, possibly adjusted, type of the descriptor as one of the types internally supported by equations.- Returns:
- the (translated) type of the descriptor
-
getValue
Returns the value of the descriptor.- Returns:
- the (translated) value of the descriptor
-