Package org.cytoscape.model
Interface CyIdentifiable
-
- All Known Subinterfaces:
CyEdge
,CyNetwork
,CyNetworkView
,CyNetworkViewSnapshot
,CyNode
,CyRootNetwork
,CySubNetwork
,CyTable
,NullCyNetworkView
,View<S>
public interface CyIdentifiable
CyIdentifiable is an interface that indicates that the implementing object can be considered a key into a table. In general, table entries will be things like nodes, edges, and networks..Module:
model-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>model-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.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Long
getSUID()
Returns the SUID of the implementing object.
-
-
-
Field Detail
-
SUID
static final String SUID
This will be used as column name of SUID.- See Also:
- Constant Field Values
-
-
Method Detail
-
getSUID
Long getSUID()
Returns the SUID of the implementing object.- Returns:
- the SUID of the implementing object.
-
-