Package com.tietoenator.trip.jxp.graph
Class TdbGraphPathEdge
- java.lang.Object
-
- com.tietoenator.trip.jxp.session.TdbSessionObject
-
- com.tietoenator.trip.jxp.graph.TdbGraphPathEdge
-
public class TdbGraphPathEdge extends TdbSessionObject
Represents an edge (a.k.a. link or relation) in a path such as generated by one of the path analysis functions in TdbGraphSet.THIS CLASS IS EXPERIMENTAL. USE WITH CAUTION! ITS INTERFACE MAY CHANGE IN FUTURE RELEASES.
- Since:
- TRIPjxp 3.1
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
Returns the name of the edgeTdbGraphPathVertex
getTarget()
Returns the target vertex.double
getWeight()
Returns the weight value associated with this edge.-
Methods inherited from class com.tietoenator.trip.jxp.session.TdbSessionObject
cancel, getSession, isCancelable, setCancelable
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Returns the name of the edge
-
getWeight
public double getWeight()
Returns the weight value associated with this edge.
-
getTarget
public TdbGraphPathVertex getTarget()
Returns the target vertex.
-
-