Package org.jgrapht.util
Class VertexPair<V>
- java.lang.Object
-
- org.jgrapht.util.VertexPair<V>
-
public class VertexPair<V> extends java.lang.ObjectRepresentation of a pair of vertices; to be replaced by Pairif Sun ever gets around to adding Pair to java.util. - Author:
- Soren
-
-
Constructor Summary
Constructors Constructor Description VertexPair(V n1, V n2)
-
-
-
Method Detail
-
getFirst
public V getFirst()
-
getSecond
public V getSecond()
-
hasVertex
public boolean hasVertex(V v)
Assess if this pair contains the vertex.- Parameters:
v- The vertex in question- Returns:
- true if contains, false otherwise
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-