Uses of Class
edu.uci.ics.jung.graph.util.EdgeType

Packages that use EdgeType
edu.uci.ics.jung.graph Interfaces for the JUNG graph types, and some representative implementations. 
edu.uci.ics.jung.graph.util Utility interfaces and classes for the JUNG API. 
edu.uci.ics.jung.io Interfaces and classes for reading and writing graphs in various (file) formats. 
edu.uci.ics.jung.visualization.control Mechanisms for manipulating and controlling a graph visualization, largely in terms of mouse plugins. 
 

Uses of EdgeType in edu.uci.ics.jung.graph
 

Methods in edu.uci.ics.jung.graph that return EdgeType
 EdgeType GraphDecorator.getEdgeType(E edge)
           
 EdgeType Hypergraph.getEdgeType(E edge)
          Returns the edge type of edge in this graph.
 EdgeType DirectedSparseGraph.getEdgeType(E edge)
           
 EdgeType DirectedSparseMultigraph.getEdgeType(E edge)
           
 EdgeType OrderedKAryTree.getEdgeType(E edge)
           
 EdgeType SparseGraph.getEdgeType(E edge)
           
 EdgeType SparseMultigraph.getEdgeType(E edge)
           
 EdgeType UndirectedSparseGraph.getEdgeType(E edge)
           
 EdgeType UndirectedSparseMultigraph.getEdgeType(E edge)
           
 EdgeType SetHypergraph.getEdgeType(H edge)
           
 

Methods in edu.uci.ics.jung.graph with parameters of type EdgeType
 boolean DelegateTree.addChild(E edge, V parent, V child, EdgeType edgeType)
          add the passed child node as a child of parent.
 boolean GraphDecorator.addEdge(E edge, Collection<? extends V> vertices, EdgeType edge_type)
           
 boolean Hypergraph.addEdge(E edge, Collection<? extends V> vertices, EdgeType edge_type)
          Adds edge to this graph with type edge_type.
 boolean AbstractGraph.addEdge(E edge, Collection<? extends V> vertices, EdgeType edgeType)
           
 boolean OrderedKAryTree.addEdge(E edge, Collection<? extends V> vertices, EdgeType edge_type)
           
abstract  boolean AbstractGraph.addEdge(E edge, Pair<? extends V> endpoints, EdgeType edgeType)
           
 boolean DirectedSparseGraph.addEdge(E edge, Pair<? extends V> endpoints, EdgeType edgeType)
           
 boolean DirectedSparseMultigraph.addEdge(E edge, Pair<? extends V> endpoints, EdgeType edgeType)
           
 boolean SparseGraph.addEdge(E edge, Pair<? extends V> endpoints, EdgeType edgeType)
           
 boolean SparseMultigraph.addEdge(E edge, Pair<? extends V> endpoints, EdgeType edgeType)
           
 boolean UndirectedSparseGraph.addEdge(E edge, Pair<? extends V> endpoints, EdgeType edgeType)
           
 boolean UndirectedSparseMultigraph.addEdge(E edge, Pair<? extends V> endpoints, EdgeType edgeType)
           
 boolean Graph.addEdge(E e, V v1, V v2, EdgeType edgeType)
          Adds edge e to this graph such that it connects vertex v1 to v2.
 boolean GraphDecorator.addEdge(E e, V v1, V v2, EdgeType edgeType)
           
 boolean ObservableGraph.addEdge(E e, V v1, V v2, EdgeType edgeType)
           
 boolean DelegateForest.addEdge(E e, V v1, V v2, EdgeType edgeType)
          Add an edge to the tree, connecting v1, the parent and v2, the child.
 boolean DelegateTree.addEdge(E e, V v1, V v2, EdgeType edgeType)
          Add an edge to the tree, connecting v1, the parent and v2, the child.
 boolean DirectedSparseGraph.addEdge(E e, V v1, V v2, EdgeType edgeType)
           
 boolean DirectedSparseMultigraph.addEdge(E edge, V source, V dest, EdgeType edgeType)
          Adds edge to the graph.
 boolean OrderedKAryTree.addEdge(E e, V v1, V v2, EdgeType edge_type)
           
 boolean SparseGraph.addEdge(E e, V v1, V v2, EdgeType edgeType)
           
 boolean SparseMultigraph.addEdge(E edge, V v1, V v2, EdgeType edgeType)
           
 boolean UndirectedSparseGraph.addEdge(E e, V v1, V v2, EdgeType edgeType)
           
 boolean UndirectedSparseMultigraph.addEdge(E edge, V v1, V v2, EdgeType edgeType)
           
 boolean SetHypergraph.addEdge(H hyperedge, Collection<? extends V> to_attach, EdgeType edge_type)
           
 int GraphDecorator.getEdgeCount(EdgeType edge_type)
           
 int Hypergraph.getEdgeCount(EdgeType edge_type)
          Returns the number of edges of type edge_type in this graph.
 int DirectedSparseGraph.getEdgeCount(EdgeType edge_type)
           
 int DirectedSparseMultigraph.getEdgeCount(EdgeType edge_type)
           
 int OrderedKAryTree.getEdgeCount(EdgeType edge_type)
           
 int SetHypergraph.getEdgeCount(EdgeType edge_type)
           
 int SparseGraph.getEdgeCount(EdgeType edge_type)
           
 int SparseMultigraph.getEdgeCount(EdgeType edge_type)
           
 int UndirectedSparseGraph.getEdgeCount(EdgeType edge_type)
           
 int UndirectedSparseMultigraph.getEdgeCount(EdgeType edge_type)
           
 Collection<E> GraphDecorator.getEdges(EdgeType edgeType)
           
 Collection<E> Hypergraph.getEdges(EdgeType edge_type)
          Returns the collection of edges in this graph which are of type edge_type.
 Collection<E> DirectedSparseGraph.getEdges(EdgeType edgeType)
           
 Collection<E> DirectedSparseMultigraph.getEdges(EdgeType edgeType)
           
 Collection<E> OrderedKAryTree.getEdges(EdgeType edgeType)
           
 Collection<H> SetHypergraph.getEdges(EdgeType edge_type)
           
 Collection<E> SparseGraph.getEdges(EdgeType edgeType)
           
 Collection<E> SparseMultigraph.getEdges(EdgeType edgeType)
           
 Collection<E> UndirectedSparseGraph.getEdges(EdgeType edgeType)
           
 Collection<E> UndirectedSparseMultigraph.getEdges(EdgeType edgeType)
           
 

Uses of EdgeType in edu.uci.ics.jung.graph.util
 

Methods in edu.uci.ics.jung.graph.util that return EdgeType
static EdgeType EdgeType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EdgeType[] EdgeType.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Uses of EdgeType in edu.uci.ics.jung.io
 

Fields in edu.uci.ics.jung.io declared as EdgeType
protected  EdgeType GraphMLReader.default_edgetype
           
 

Methods in edu.uci.ics.jung.io with parameters of type EdgeType
protected  E PajekNetReader.createAddEdge(StringTokenizer st, V v1, EdgeType directed, Graph<V,E> g, List<V> id,  edge_factory)
           
 

Uses of EdgeType in edu.uci.ics.jung.visualization.control
 

Fields in edu.uci.ics.jung.visualization.control declared as EdgeType
protected  EdgeType EditingGraphMousePlugin.edgeIsDirected
           
 



Copyright © 2008 null. All Rights Reserved.