Uses of Class
org.cytoscape.model.CyEdge.Type
-
Packages that use CyEdge.Type Package Description org.cytoscape.model 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
Methods in org.cytoscape.model that return CyEdge.Type Modifier and Type Method 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.Methods in org.cytoscape.model with parameters of type CyEdge.Type Modifier and Type Method 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.
-