Package | Description |
---|---|
org.cytoscape.model |
This package has the core interfaces of network and
table data structures that are foundational to Cytoscape.
|
Modifier and Type | Method and Description |
---|---|
static CyEdge.Type |
CyEdge.Type.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CyEdge.Type[] |
CyEdge.Type.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
Iterable<CyEdge> |
CyNetwork.getAdjacentEdgeIterable(CyNode node,
CyEdge.Type edgeType)
Gets an Iteable of edges that connect to this node.
|
List<CyEdge> |
CyNetwork.getAdjacentEdgeList(CyNode node,
CyEdge.Type edgeType)
Get the list of edges that connect to this node.
|
List<CyEdge> |
CyNetwork.getConnectingEdgeList(CyNode source,
CyNode target,
CyEdge.Type edgeType)
Get the list of edges that connect two nodes.
|
List<CyNode> |
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.
|
Copyright 2011-2015 Cytoscape Consortium. All rights reserved.