Package edu.cmu.tetrad.graph
Class Edge
java.lang.Object
edu.cmu.tetrad.graph.Edge
- All Implemented Interfaces:
TetradSerializable,Serializable,Comparable<Edge>
Represents an edge node1 *-# node2 where * and # are endpoints of type Endpoint--that is, Endpoint.TAIL,
Endpoint.ARROW, or Endpoint.CIRCLE.
Note that because speed is of the essence, and Edge cannot be compared to an object of any other type; this will throw an exception.
- Version:
- $Id: $Id
- Author:
- josephramsey
- See Also:
-
Nested Class Summary
Nested Classes -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddEdgeTypeProbability.voidaddProperty(Edge.Property property) addProperty.intcompareTo.final booleanfinal EndpointgetDistalEndpoint(Node node) getDistalEndpoint.final NodegetDistalNode(Node node) Traverses the edge in an undirected fashion--given one node along the edge, returns the node at the opposite end of the edge.Getter for the fieldedgeTypeProbabilities.final EndpointGetter for the fieldendpoint1.final EndpointGetter for the fieldendpoint2.Getter for the fieldlineColor.final NodegetNode1()Getter for the fieldnode1.final NodegetNode2()Getter for the fieldnode2.doubleGetter for the fieldprobability.Getter for the fieldproperties.final EndpointgetProximalEndpoint(Node node) getProximalEndpoint.final inthashCode()hashCode.booleanisDirected.booleanisHighlighted.booleanisNull()isNull.booleanpointsTowards(Node node) pointsTowards.reverse()reverse.static EdgeGenerates a simple exemplar of this class to test serialization.final voidSetter for the fieldendpoint1.final voidSetter for the fieldendpoint2.voidsetHighlighted(boolean highlighted) Setter for the fieldhighlighted.voidsetProbability(double probability) Setter for the fieldprobability.final StringtoString()Produces a string representation of the edge.
-
Constructor Details
-
Edge
Constructs a new edge by specifying the nodes it connects and the endpoint types.- Parameters:
node1- the first nodenode2- the second node _endpoint1- the endpoint at the first nodeendpoint2- the endpoint at the second node
-
Edge
-
-
Method Details
-
serializableInstance
-
getNode1
-
getNode2
-
getEndpoint1
Getter for the field
endpoint1.- Returns:
- the endpoint of the edge at the A node.
-
setEndpoint1
-
getEndpoint2
Getter for the field
endpoint2.- Returns:
- the endpoint of the edge at the B node.
-
setEndpoint2
-
getProximalEndpoint
getProximalEndpoint.
- Parameters:
node- aNodeobject- Returns:
- the endpoint nearest to the given node.
- Throws:
IllegalArgumentException- if the given node is not along the edge.
-
getDistalEndpoint
getDistalEndpoint.
- Parameters:
node- aNodeobject- Returns:
- the endpoint furthest from the given node.
- Throws:
IllegalArgumentException- if the given node is not along the edge.
-
getDistalNode
-
isDirected
public boolean isDirected()isDirected.
- Returns:
- true just in case this edge is directed.
-
pointsTowards
-
reverse
-
toString
-
hashCode
-
equals
-
compareTo
compareTo.
- Specified by:
compareToin interfaceComparable<Edge>- Parameters:
_edge- aEdgeobject- Returns:
- a int
-
isNull
public boolean isNull()isNull.
- Returns:
- a boolean
-
getLineColor
-
addProperty
addProperty.
- Parameters:
property- aEdge.Propertyobject
-
getProperties
Getter for the field
properties.- Returns:
- a
ArrayListobject
-
addEdgeTypeProbability
addEdgeTypeProbability.
- Parameters:
prob- aEdgeTypeProbabilityobject
-
getEdgeTypeProbabilities
Getter for the field
edgeTypeProbabilities.- Returns:
- a
Listobject
-
getProbability
public double getProbability()Getter for the field
probability.- Returns:
- a double
-
setProbability
public void setProbability(double probability) Setter for the field
probability.- Parameters:
probability- a double
-
isHighlighted
public boolean isHighlighted()isHighlighted.
- Returns:
- a boolean
-
setHighlighted
public void setHighlighted(boolean highlighted) Setter for the field
highlighted.- Parameters:
highlighted- a boolean
-