Uses of Interface
org.goplanit.utils.graph.UntypedGraph
-
Packages that use UntypedGraph Package Description org.goplanit.graph Network component object classesorg.goplanit.graph.directed org.goplanit.graph.modifier org.goplanit.utils.graph Utilities for setting up graphsorg.goplanit.utils.graph.directed -
-
Uses of UntypedGraph in org.goplanit.graph
Classes in org.goplanit.graph that implement UntypedGraph Modifier and Type Class Description classConjugateGraphImpl<V extends ConjugateVertex,E extends ConjugateEdge>A conjugate graph implementation consisting of conjugate vertices and conjugate edgesclassGraphImpl<V extends Vertex,E extends Edge>A graph implementation consisting of vertices and edgesclassUntypedGraphImpl<V extends Vertex,E extends Edge>A graph implementation consisting of vertices and edgesMethods in org.goplanit.graph that return UntypedGraph Modifier and Type Method Description UntypedGraph<V,E>UntypedGraphImpl. deepClone()An id entity should always support a deep copy, i.e., all "owned" members will be deep copied when a clone of this instance is created via this call.UntypedGraph<V,E>UntypedGraphImpl. shallowClone()Create a shallow copy of this entityMethods in org.goplanit.graph that return types with arguments of type UntypedGraph Modifier and Type Method Description Class<UntypedGraph>UntypedGraphImpl. getIdClass()Each managed id class is expected to generate its ids based on its class signature. -
Uses of UntypedGraph in org.goplanit.graph.directed
Classes in org.goplanit.graph.directed that implement UntypedGraph Modifier and Type Class Description classConjugateDirectedGraphImpl<V extends ConjugateDirectedVertex,E extends ConjugateDirectedEdge,ES extends ConjugateEdgeSegment>A conjugate directed graph implementation consisting of conjugate directed vertices, conjugate directed edges and conjugate edge segmentsclassDirectedGraphImpl<V extends DirectedVertex,E extends DirectedEdge,ES extends EdgeSegment>A directed graph implementation consisting of directed vertices, directed edges and edge segmentsclassUntypedDirectedGraphImpl<V extends DirectedVertex,E extends DirectedEdge,ES extends EdgeSegment>A directed graph implementation consisting of directed vertices and directed edges -
Uses of UntypedGraph in org.goplanit.graph.modifier
Fields in org.goplanit.graph.modifier declared as UntypedGraph Modifier and Type Field Description protected UntypedGraph<?,?>GraphModifierImpl. theGraphthe graph to modifyMethods in org.goplanit.graph.modifier that return UntypedGraph Modifier and Type Method Description UntypedGraph<?,?>GraphModifierImpl. getGraph()Access to graphConstructors in org.goplanit.graph.modifier with parameters of type UntypedGraph Constructor Description GraphModifierImpl(UntypedGraph<?,?> theGraph)Constructor -
Uses of UntypedGraph in org.goplanit.utils.graph
Subinterfaces of UntypedGraph in org.goplanit.utils.graph Modifier and Type Interface Description interfaceGraph<V extends Vertex,E extends Edge>Interface for a graph with explicit container types rather than the base containers.interfaceUntypedDirectedGraph<V extends DirectedVertex,E extends DirectedEdge,ES extends EdgeSegment>Interface for a directed graphFields in org.goplanit.utils.graph with type parameters of type UntypedGraph Modifier and Type Field Description static Class<UntypedGraph>UntypedGraph. GRAPH_ID_CLASSid class for generating idsMethods in org.goplanit.utils.graph that return UntypedGraph Modifier and Type Method Description UntypedGraph<V,E>UntypedGraph. deepClone()An id entity should always support a deep copy, i.e., all "owned" members will be deep copied when a clone of this instance is created via this call.UntypedGraph<V,E>UntypedGraph. shallowClone()Create a shallow copy of this entity -
Uses of UntypedGraph in org.goplanit.utils.graph.directed
Subinterfaces of UntypedGraph in org.goplanit.utils.graph.directed Modifier and Type Interface Description interfaceDirectedGraph<V extends DirectedVertex,E extends DirectedEdge,ES extends EdgeSegment>Interface for a directed graph with explicit container types rather than the base containers.
-