Uses of Enum Class
org.cytoscape.model.CyEdge.Type
Package
Description
This package has the core interfaces of network and
table data structures that are foundational to Cytoscape.
-
Uses of CyEdge.Type in org.cytoscape.model
Modifier and TypeMethodDescriptionstatic CyEdge.Type
Returns the enum constant of this class with the specified name.static CyEdge.Type[]
CyEdge.Type.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionCyNetwork.getAdjacentEdgeIterable(CyNode node, CyEdge.Type edgeType)
Gets an Iteable of edges that connect to this node.CyNetwork.getAdjacentEdgeList(CyNode node, CyEdge.Type edgeType)
Get the list of edges that connect to this node.CyNetwork.getConnectingEdgeList(CyNode source, CyNode target, CyEdge.Type edgeType)
Get the list of edges that connect two nodes.CyNetwork.getNeighborList(CyNode node, CyEdge.Type edgeType)
Get the list of nodes that neighbor this node where the definition of "neighbor" is a node that is connected to this node by the passed edgeType.