Uses of Class
edu.uci.ics.jung.graph.event.GraphEvent.Type
-
Packages that use GraphEvent.Type Package Description edu.uci.ics.jung.graph.event Support for generating events in response to graph actions, especially mutations. -
-
Uses of GraphEvent.Type in edu.uci.ics.jung.graph.event
Fields in edu.uci.ics.jung.graph.event declared as GraphEvent.Type Modifier and Type Field Description protected GraphEvent.Type
GraphEvent. type
Methods in edu.uci.ics.jung.graph.event that return GraphEvent.Type Modifier and Type Method Description GraphEvent.Type
GraphEvent. getType()
static GraphEvent.Type
GraphEvent.Type. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GraphEvent.Type[]
GraphEvent.Type. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in edu.uci.ics.jung.graph.event with parameters of type GraphEvent.Type Constructor Description Edge(Graph<V,E> source, GraphEvent.Type type, E edge)
Creates a graph event for the specified graph, edge, and type.GraphEvent(Graph<V,E> source, GraphEvent.Type type)
Creates an instance with the specifiedsource
graph andType
(vertex/edge addition/removal).Vertex(Graph<V,E> source, GraphEvent.Type type, V vertex)
Creates a graph event for the specified graph, vertex, and type.
-