Graph
Class GraphConstants

java.lang.Object
  |
  +--Graph.GraphConstants

public final class GraphConstants
extends java.lang.Object

GraphConstants serves as a repository of constants that our Graph data structure uses. All constants specific to the "semantics" of the graph (such as router or AS types etc) should be in the ModelConstants class.


Field Summary
static int COLOR_BLACK
           
static int COLOR_GRAY
           
static int COLOR_WHITE
           
static int DIRECTED
           
static int UNDIRECTED
           
 
Constructor Summary
GraphConstants()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

COLOR_BLACK

public static int COLOR_BLACK

COLOR_WHITE

public static int COLOR_WHITE

COLOR_GRAY

public static int COLOR_GRAY

UNDIRECTED

public static int UNDIRECTED

DIRECTED

public static int DIRECTED
Constructor Detail

GraphConstants

public GraphConstants()