Class Vertex<R>
- java.lang.Object
-
- org.hibernate.envers.internal.tools.graph.Vertex<R>
-
public class Vertex<R> extends Object
A graph vertex - stores its representation, neighbours, start and end time in (D|B)FS.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addNeighbour(Vertex<R> n)
int
getEndTime()
List<Vertex<R>>
getNeighbours()
R
getRepresentation()
int
getStartTime()
void
setEndTime(int endTime)
void
setStartTime(int startTime)
-