Uses of Class
edu.uci.ics.jung.graph.util.EdgeType
-
Packages that use EdgeType Package Description 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.edu.uci.ics.jung.visualization.spatial -
-
Uses of EdgeType in edu.uci.ics.jung.graph
Fields in edu.uci.ics.jung.graph declared as EdgeType Modifier and Type Field Description protected EdgeType
AbstractTypedGraph. edge_type
The edge type for all edges in this graph.Methods in edu.uci.ics.jung.graph that return EdgeType Modifier and Type Method Description EdgeType
AbstractTypedGraph. getDefaultEdgeType()
Returns this graph's edge type.EdgeType
GraphDecorator. getDefaultEdgeType()
EdgeType
Hypergraph. getDefaultEdgeType()
Returns the default edge type for this graph.EdgeType
SetHypergraph. getDefaultEdgeType()
EdgeType
SparseGraph. getDefaultEdgeType()
EdgeType
SparseMultigraph. getDefaultEdgeType()
EdgeType
AbstractTypedGraph. getEdgeType(E e)
Returns this graph's edge type, ornull
ife
is not in this graph.EdgeType
GraphDecorator. getEdgeType(E edge)
EdgeType
Hypergraph. getEdgeType(E edge)
Returns the edge type ofedge
in this graph.EdgeType
SetHypergraph. getEdgeType(H edge)
EdgeType
SparseGraph. getEdgeType(E edge)
EdgeType
SparseMultigraph. getEdgeType(E edge)
Methods in edu.uci.ics.jung.graph with parameters of type EdgeType Modifier and Type Method Description boolean
DelegateTree. addChild(E edge, V parent, V child, EdgeType edgeType)
add the passed child node as a child of parent.abstract boolean
AbstractGraph. addEdge(E edge, Pair<? extends V> endpoints, EdgeType edgeType)
Addsedge
to this graph with the specifiedendpoints
andEdgeType
.boolean
AbstractGraph. addEdge(E edge, java.util.Collection<? extends V> vertices, EdgeType edgeType)
boolean
AbstractGraph. 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
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 edge, Pair<? extends V> endpoints, EdgeType edgeType)
boolean
DirectedSparseMultigraph. addEdge(E edge, Pair<? extends V> endpoints, EdgeType edgeType)
boolean
Graph. addEdge(E e, V v1, V v2, EdgeType edgeType)
Adds edgee
to this graph such that it connects vertexv1
tov2
.boolean
GraphDecorator. addEdge(E edge, java.util.Collection<? extends V> vertices, EdgeType edge_type)
boolean
GraphDecorator. addEdge(E e, V v1, V v2, EdgeType edgeType)
boolean
Hypergraph. addEdge(E edge, java.util.Collection<? extends V> vertices, EdgeType edge_type)
Addsedge
to this graph with typeedge_type
.boolean
ObservableGraph. addEdge(E e, V v1, V v2, EdgeType edgeType)
boolean
OrderedKAryTree. addEdge(E edge, Pair<? extends V> endpoints, EdgeType edgeType)
boolean
OrderedKAryTree. addEdge(E edge, java.util.Collection<? extends V> vertices, EdgeType edge_type)
boolean
OrderedKAryTree. addEdge(E e, V v1, V v2, EdgeType edge_type)
boolean
SetHypergraph. addEdge(H hyperedge, java.util.Collection<? extends V> to_attach, EdgeType edge_type)
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 edge_type)
boolean
UndirectedSparseMultigraph. addEdge(E edge, V v1, V v2, EdgeType edgeType)
int
AbstractTypedGraph. getEdgeCount(EdgeType edge_type)
Returns the edge count for this graph ifedge_type
matches the edge type for this graph, and 0 otherwise.int
GraphDecorator. getEdgeCount(EdgeType edge_type)
int
Hypergraph. getEdgeCount(EdgeType edge_type)
Returns the number of edges of typeedge_type
in this graph.int
SetHypergraph. getEdgeCount(EdgeType edge_type)
int
SparseGraph. getEdgeCount(EdgeType edge_type)
int
SparseMultigraph. getEdgeCount(EdgeType edge_type)
java.util.Collection<E>
AbstractTypedGraph. getEdges(EdgeType edge_type)
Returns the edge set for this graph ifedgeType
matches the edge type for this graph, and an empty set otherwise.java.util.Collection<E>
GraphDecorator. getEdges(EdgeType edgeType)
java.util.Collection<E>
Hypergraph. getEdges(EdgeType edge_type)
Returns the collection of edges in this graph which are of typeedge_type
.java.util.Collection<H>
SetHypergraph. getEdges(EdgeType edge_type)
java.util.Collection<E>
SparseGraph. getEdges(EdgeType edgeType)
java.util.Collection<E>
SparseMultigraph. getEdges(EdgeType edgeType)
protected boolean
AbstractTypedGraph. hasEqualEdgeType(EdgeType edge_type)
protected void
AbstractTypedGraph. validateEdgeType(EdgeType edge_type)
Throws anIllegalArgumentException
ifedge_type
does not match the default edge type for this graph.Constructors in edu.uci.ics.jung.graph with parameters of type EdgeType Constructor Description 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 Modifier and Type Method Description EdgeType
Graphs.SynchronizedAbstractGraph. getDefaultEdgeType()
EdgeType
Graphs.UnmodifiableAbstractGraph. getDefaultEdgeType()
EdgeType
Graphs.SynchronizedAbstractGraph. getEdgeType(E edge)
EdgeType
Graphs.UnmodifiableAbstractGraph. getEdgeType(E edge)
static EdgeType
EdgeType. valueOf(java.lang.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.Methods in edu.uci.ics.jung.graph.util with parameters of type EdgeType Modifier and Type Method Description boolean
Graphs.SynchronizedAbstractGraph. addEdge(E e, java.util.Collection<? extends V> vertices, EdgeType edgeType)
boolean
Graphs.SynchronizedAbstractGraph. addEdge(E e, V v1, V v2, EdgeType edgeType)
boolean
Graphs.UnmodifiableAbstractGraph. addEdge(E e, java.util.Collection<? extends V> vertices, EdgeType edgeType)
boolean
Graphs.UnmodifiableAbstractGraph. addEdge(E e, V v1, V v2, EdgeType edgeType)
int
Graphs.SynchronizedAbstractGraph. getEdgeCount(EdgeType edge_type)
int
Graphs.UnmodifiableAbstractGraph. getEdgeCount(EdgeType edge_type)
java.util.Collection<E>
Graphs.SynchronizedAbstractGraph. getEdges(EdgeType edgeType)
java.util.Collection<E>
Graphs.UnmodifiableAbstractGraph. getEdges(EdgeType edgeType)
-
Uses of EdgeType in edu.uci.ics.jung.io
Fields in edu.uci.ics.jung.io declared as EdgeType Modifier and Type Field Description protected EdgeType
GraphMLReader. default_edgetype
Methods in edu.uci.ics.jung.io with parameters of type EdgeType Modifier and Type Method Description protected E
PajekNetReader. createAddEdge(java.util.StringTokenizer st, V v1, EdgeType directed, Graph<V,E> g, java.util.List<V> id, com.google.common.base.Supplier<E> edge_factory)
-
Uses of EdgeType in edu.uci.ics.jung.visualization.control
Fields in edu.uci.ics.jung.visualization.control declared as EdgeType Modifier and Type Field Description protected EdgeType
SimpleEdgeSupport. edgeType
Methods in edu.uci.ics.jung.visualization.control that return EdgeType Modifier and Type Method Description EdgeType
SimpleEdgeSupport. getEdgeType()
Methods in edu.uci.ics.jung.visualization.control with parameters of type EdgeType Modifier and Type Method Description void
SimpleEdgeSupport. setEdgeType(EdgeType edgeType)
void
EdgeSupport. startEdgeCreate(BasicVisualizationServer<V,E> vv, V startVertex, java.awt.geom.Point2D startPoint, EdgeType edgeType)
void
SimpleEdgeSupport. startEdgeCreate(BasicVisualizationServer<V,E> vv, V startVertex, java.awt.geom.Point2D startPoint, EdgeType edgeType)
-
Uses of EdgeType in edu.uci.ics.jung.visualization.spatial
Methods in edu.uci.ics.jung.visualization.spatial that return EdgeType Modifier and Type Method Description EdgeType
AggregateGraph. getDefaultEdgeType()
EdgeType
FastRenderingGraph. getDefaultEdgeType()
EdgeType
AggregateGraph. getEdgeType(E edge)
EdgeType
FastRenderingGraph. getEdgeType(E edge)
Methods in edu.uci.ics.jung.visualization.spatial with parameters of type EdgeType Modifier and Type Method Description boolean
AggregateGraph. addEdge(E edge, java.util.Collection<? extends V> vertices, EdgeType edgeType)
boolean
AggregateGraph. addEdge(E e, V v1, V v2, EdgeType edgeType)
boolean
FastRenderingGraph. addEdge(E edge, java.util.Collection<? extends V> vertices, EdgeType edgeType)
boolean
FastRenderingGraph. addEdge(E e, V v1, V v2, EdgeType edgeType)
int
AggregateGraph. getEdgeCount(EdgeType edgeType)
int
FastRenderingGraph. getEdgeCount(EdgeType edgeType)
java.util.Collection<E>
AggregateGraph. getEdges(EdgeType edgeType)
java.util.Collection<E>
FastRenderingGraph. getEdges(EdgeType edgeType)
-