Uses of Enum Class
edu.uci.ics.jung.graph.util.EdgeType
Packages that use EdgeType
Package
Description
Interfaces for the JUNG graph types, and some representative implementations.
Utility interfaces and classes for the JUNG API.
Interfaces and classes for reading and writing graphs in various (file)
formats.
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 EdgeTypeModifier and TypeFieldDescriptionprotected final EdgeTypeAbstractTypedGraph.edge_typeThe edge type for all edges in this graph.Methods in edu.uci.ics.jung.graph that return EdgeTypeModifier and TypeMethodDescriptionAbstractTypedGraph.getDefaultEdgeType()Returns this graph's edge type.GraphDecorator.getDefaultEdgeType()Hypergraph.getDefaultEdgeType()Returns the default edge type for this graph.SetHypergraph.getDefaultEdgeType()SparseGraph.getDefaultEdgeType()SparseMultigraph.getDefaultEdgeType()AbstractTypedGraph.getEdgeType(E e) Returns this graph's edge type, ornullifeis not in this graph.GraphDecorator.getEdgeType(E edge) Hypergraph.getEdgeType(E edge) Returns the edge type ofedgein this graph.SetHypergraph.getEdgeType(H edge) SparseGraph.getEdgeType(E edge) SparseMultigraph.getEdgeType(E edge) Methods in edu.uci.ics.jung.graph with parameters of type EdgeTypeModifier and TypeMethodDescriptionbooleanadd the passed child node as a child of parent. parent must exist in the tree, and child must not already exist.abstract booleanAddsedgeto this graph with the specifiedendpointsandEdgeType.booleanAbstractGraph.addEdge(E edge, Collection<? extends V> vertices, EdgeType edgeType) booleanbooleanAdd an edge to the tree, connecting v1, the parent and v2, the child. v1 must already exist in the tree, and v2 must not already exist the passed edge must be unique in the tree.booleanAdd an edge to the tree, connecting v1, the parent and v2, the child. v1 must already exist in the tree, and v2 must not already exist the passed edge must be unique in the tree.booleanbooleanbooleanAdds edgeeto this graph such that it connects vertexv1tov2.booleanGraphDecorator.addEdge(E edge, Collection<? extends V> vertices, EdgeType edge_type) booleanbooleanHypergraph.addEdge(E edge, Collection<? extends V> vertices, EdgeType edge_type) Addsedgeto this graph with typeedge_type.booleanbooleanbooleanOrderedKAryTree.addEdge(E edge, Collection<? extends V> vertices, EdgeType edge_type) booleanbooleanSetHypergraph.addEdge(H hyperedge, Collection<? extends V> to_attach, EdgeType edge_type) booleanbooleanbooleanbooleanbooleanintAbstractTypedGraph.getEdgeCount(EdgeType edge_type) Returns the edge count for this graph ifedge_typematches the edge type for this graph, and 0 otherwise.intGraphDecorator.getEdgeCount(EdgeType edge_type) intHypergraph.getEdgeCount(EdgeType edge_type) Returns the number of edges of typeedge_typein this graph.intSetHypergraph.getEdgeCount(EdgeType edge_type) intSparseGraph.getEdgeCount(EdgeType edge_type) intSparseMultigraph.getEdgeCount(EdgeType edge_type) Returns the edge set for this graph ifedgeTypematches the edge type for this graph, and an empty set otherwise.Returns the collection of edges in this graph which are of typeedge_type.protected booleanAbstractTypedGraph.hasEqualEdgeType(EdgeType edge_type) protected voidAbstractTypedGraph.validateEdgeType(EdgeType edge_type) Throws anIllegalArgumentExceptionifedge_typedoes not match the default edge type for this graph.Constructors in edu.uci.ics.jung.graph with parameters of type EdgeTypeModifierConstructorDescriptionAbstractTypedGraph(EdgeType edge_type) Creates an instance with the specified edge type. -
Uses of EdgeType in edu.uci.ics.jung.graph.util
Subclasses with type arguments of type EdgeType in edu.uci.ics.jung.graph.utilModifier and TypeClassDescriptionenumDefines the possible edge types for graphs which assign types to edges.Methods in edu.uci.ics.jung.graph.util that return EdgeType -
Uses of EdgeType in edu.uci.ics.jung.io
Fields in edu.uci.ics.jung.io declared as EdgeTypeMethods in edu.uci.ics.jung.io with parameters of type EdgeType -
Uses of EdgeType in edu.uci.ics.jung.visualization.control
Fields in edu.uci.ics.jung.visualization.control declared as EdgeTypeMethods in edu.uci.ics.jung.visualization.control that return EdgeTypeMethods in edu.uci.ics.jung.visualization.control with parameters of type EdgeTypeModifier and TypeMethodDescriptionvoidSimpleEdgeSupport.setEdgeType(EdgeType edgeType) voidEdgeSupport.startEdgeCreate(BasicVisualizationServer<V, E> vv, V startVertex, Point2D startPoint, EdgeType edgeType) voidSimpleEdgeSupport.startEdgeCreate(BasicVisualizationServer<V, E> vv, V startVertex, Point2D startPoint, EdgeType edgeType) -
Uses of EdgeType in edu.uci.ics.jung.visualization.spatial
Methods in edu.uci.ics.jung.visualization.spatial that return EdgeTypeModifier and TypeMethodDescriptionAggregateGraph.getDefaultEdgeType()FastRenderingGraph.getDefaultEdgeType()AggregateGraph.getEdgeType(E edge) FastRenderingGraph.getEdgeType(E edge) Methods in edu.uci.ics.jung.visualization.spatial with parameters of type EdgeTypeModifier and TypeMethodDescriptionbooleanAggregateGraph.addEdge(E edge, Collection<? extends V> vertices, EdgeType edgeType) booleanbooleanFastRenderingGraph.addEdge(E edge, Collection<? extends V> vertices, EdgeType edgeType) booleanintAggregateGraph.getEdgeCount(EdgeType edgeType) intFastRenderingGraph.getEdgeCount(EdgeType edgeType)