1 /*
2 * Created on February 27, 2007
3 *
4 * Copyright (c) 2007, The JUNG Authors
5 *
6 * All rights reserved.
7 *
8 * This software is open-source under the BSD license; see either
9 * "license.txt" or
10 * https://github.com/jrtom/jung/blob/master/LICENSE for a description.
11 */
12
13 package edu.uci.ics.jung.graph.util;
14
15 /**
16 * Defines the possible edge types for graphs which assign types to edges.
17 */
18 public enum EdgeType
19 {
20 DIRECTED,
21 UNDIRECTED
22 }