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
 

Fields in edu.uci.ics.jung.graph declared as EdgeType
protected  EdgeType AbstractTypedGraph.edge_type
          The edge type for all edges in this graph.
 

Methods in edu.uci.ics.jung.graph that return EdgeType
 EdgeType SparseMultigraph.getDefaultEdgeType()
           
 EdgeType AbstractTypedGraph.getDefaultEdgeType()
          Returns this graph's edge type.
 EdgeType SparseGraph.getDefaultEdgeType()
           
 EdgeType SetHypergraph.getDefaultEdgeType()
           
 EdgeType Hypergraph.getDefaultEdgeType()
          Returns the default edge type for this graph.
 EdgeType GraphDecorator.getDefaultEdgeType()
           
 EdgeType SparseMultigraph.getEdgeType(E edge)
           
 EdgeType AbstractTypedGraph.getEdgeType(E e)
          Returns this graph's edge type, or null if e is not in this graph.
 EdgeType SparseGraph.getEdgeType(E edge)
           
 EdgeType Hypergraph.getEdgeType(E edge)
          Returns the edge type of edge in this graph.
 EdgeType GraphDecorator.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 AbstractGraph.addEdge(E edge, Collection<? extends V> vertices, EdgeType edgeType)
           
 boolean OrderedKAryTree.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 GraphDecorator.addEdge(E edge, Collection<? extends V> vertices, EdgeType edge_type)
           
 boolean SparseMultigraph.addEdge(E edge, Pair<? extends V> endpoints, EdgeType edgeType)
           
abstract  boolean AbstractGraph.addEdge(E edge, Pair<? extends V> endpoints, EdgeType edgeType)
          Adds edge to this graph with the specified endpoints and EdgeType.
 boolean SparseGraph.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 edge_type)
           
 boolean OrderedKAryTree.addEdge(E edge, Pair<? extends V> endpoints, EdgeType edgeType)
           
 boolean DirectedSparseMultigraph.addEdge(E edge, Pair<? extends V> endpoints, EdgeType edgeType)
           
 boolean DirectedSparseGraph.addEdge(E edge, Pair<? extends V> endpoints, EdgeType edgeType)
           
 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 AbstractGraph.addEdge(E e, V v1, V v2, EdgeType edge_type)
           
 boolean UndirectedSparseMultigraph.addEdge(E edge, V v1, V v2, EdgeType edgeType)
           
 boolean OrderedKAryTree.addEdge(E e, V v1, V v2, EdgeType edge_type)
           
 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 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 ObservableGraph.addEdge(E e, V v1, V v2, EdgeType edgeType)
           
 boolean GraphDecorator.addEdge(E e, V v1, V v2, EdgeType edgeType)
           
 boolean SetHypergraph.addEdge(H hyperedge, Collection<? extends V> to_attach, EdgeType edge_type)
           
 int SparseMultigraph.getEdgeCount(EdgeType edge_type)
           
 int AbstractTypedGraph.getEdgeCount(EdgeType edge_type)
          Returns the edge count for this graph if edge_type matches the edge type for this graph, and 0 otherwise.
 int SparseGraph.getEdgeCount(EdgeType edge_type)
           
 int SetHypergraph.getEdgeCount(EdgeType edge_type)
           
 int Hypergraph.getEdgeCount(EdgeType edge_type)
          Returns the number of edges of type edge_type in this graph.
 int GraphDecorator.getEdgeCount(EdgeType edge_type)
           
 Collection<E> SparseMultigraph.getEdges(EdgeType edgeType)
           
 Collection<E> AbstractTypedGraph.getEdges(EdgeType edge_type)
          Returns the edge set for this graph if edgeType matches the edge type for this graph, and an empty set otherwise.
 Collection<E> SparseGraph.getEdges(EdgeType edgeType)
           
 Collection<H> SetHypergraph.getEdges(EdgeType edge_type)
           
 Collection<E> Hypergraph.getEdges(EdgeType edge_type)
          Returns the collection of edges in this graph which are of type edge_type.
 Collection<E> GraphDecorator.getEdges(EdgeType edgeType)
           
protected  boolean AbstractTypedGraph.hasEqualEdgeType(EdgeType edge_type)
          Returns true if edge_type matches the default edge type for this graph, and false otherwise.
protected  void AbstractTypedGraph.validateEdgeType(EdgeType edge_type)
          Throws an IllegalArgumentException if edge_type does not match the default edge type for this graph.
 

Constructors in edu.uci.ics.jung.graph with parameters of type EdgeType
AbstractTypedGraph(EdgeType edge_type)
          Creates an instance with the specified edge type.
 

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 are 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, org.apache.commons.collections15.Factory<E> 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 © 2011. All Rights Reserved.