- generateUUID() - Static method in class com.eduworks.ec.random.EcRandom
-
- getDefaultEdgeType() - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getDefaultEdgeType() - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns the default edge type for this graph.
- getDest(E) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getDest(E) - Method in interface com.eduworks.ec.graph.Graph
-
If directed_edge is a directed edge in this graph, returns the destination;
otherwise returns null.
- getDest(E) - Method in interface com.eduworks.ec.graph.Hypergraph
-
If directed_edge is a directed edge in this graph, returns
the destination; otherwise returns null.
- getEdgeCount() - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getEdgeCount() - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns the number of edges in this graph.
- getEdgeCountOfType(String) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getEdgeCountOfType(String) - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns the number of edges of type edge_type in this graph.
- getEdges() - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getEdges() - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns a view of all edges in this graph.
- getEdgesOfType(String) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getEdgesOfType(String) - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns the collection of edges in this graph which are of type
edge_type.
- getEdgeType(E) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getEdgeType(E) - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns the edge type of edge in this graph.
- getExpectingObject(String, String, Callback1<Object>, Callback1<String>) - Static method in class com.eduworks.ec.remote.EcRemote
-
GETs something from a remote endpoint.
- getExpectingString(String, String, Callback1<String>, Callback1<String>) - Static method in class com.eduworks.ec.remote.EcRemote
-
GETs something from a remote endpoint.
- getIncidentCount(E) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getIncidentCount(E) - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns the number of vertices that are incident to edge.
- getIncidentEdges(V) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getIncidentEdges(V) - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns the collection of edges in this graph which are connected to
vertex.
- getIncidentVertices(E) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getIncidentVertices(E) - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns the collection of vertices in this graph which are connected to
edge.
- getInEdges(V) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getInEdges(V) - Method in interface com.eduworks.ec.graph.Graph
-
Returns a Collection view of the incoming edges incident to vertex
in this graph.
- getInEdges(V) - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns a Array view of the incoming edges incident to
vertex in this graph.
- getNeighborCount(V) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getNeighborCount(V) - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns the number of vertices that are adjacent to vertex
(that is, the number of vertices that are incident to edges in
vertex's incident edge set).
- getNeighbors(V) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getNeighbors(V) - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns the collection of vertices which are connected to
vertex via any edges in this graph.
- getOpposite(V, E) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getOpposite(V, E) - Method in interface com.eduworks.ec.graph.Graph
-
Returns the vertex at the other end of edge from vertex.
- getOutEdges(V) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getOutEdges(V) - Method in interface com.eduworks.ec.graph.Graph
-
Returns a Collection view of the outgoing edges incident to vertex
in this graph.
- getOutEdges(V) - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns a Array view of the outgoing edges incident to
vertex in this graph.
- getPredecessorCount(V) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getPredecessorCount(V) - Method in interface com.eduworks.ec.graph.Graph
-
Returns the number of predecessors that vertex has in this graph.
- getPredecessors(V) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getPredecessors(V) - Method in interface com.eduworks.ec.graph.Graph
-
Returns a Collection view of the predecessors of vertex
in this graph.
- getPredecessors(V) - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns a Array view of the predecessors of
vertex in this graph.
- getSource(E) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getSource(E) - Method in interface com.eduworks.ec.graph.Graph
-
If directed_edge is a directed edge in this graph, returns the source;
otherwise returns null.
- getSource(E) - Method in interface com.eduworks.ec.graph.Hypergraph
-
If directed_edge is a directed edge in this graph, returns
the source; otherwise returns null.
- getSuccessJSONCallback(Callback1<Object>, Callback1<String>) - Static method in class com.eduworks.ec.remote.EcRemote
-
- getSuccessorCount(V) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getSuccessorCount(V) - Method in interface com.eduworks.ec.graph.Graph
-
Returns the number of successors that vertex has in this graph.
- getSuccessors(V) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getSuccessors(V) - Method in interface com.eduworks.ec.graph.Graph
-
Returns a Collection view of the successors of vertex
in this graph.
- getSuccessors(V) - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns a Array view of the successors of
vertex in this graph.
- getVertexCount() - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getVertexCount() - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns the number of vertices in this graph.
- getVertices() - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- getVertices() - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns a view of all vertices in this graph.
- Graph<V,E> - Interface in com.eduworks.ec.graph
-
A graph consisting of a set of vertices of type V
set and a set of edges of type E.
- immediate(Callback0) - Static method in class com.eduworks.ec.task.Task
-
Invoke a method now or later based on whether some time has passed since we last drew the screen.
- immediateFunctions - Static variable in class com.eduworks.ec.task.Task
-
- inDegree(V) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- inDegree(V) - Method in interface com.eduworks.ec.graph.Graph
-
Returns the number of incoming edges incident to vertex.
- inDegree(V) - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns the number of incoming edges incident to vertex.
- indexOf(Array, Object) - Static method in class com.eduworks.ec.array.EcArray
-
Returns the index of an object or value if the object or value exists in the array.
- isArray(Object) - Static method in class com.eduworks.ec.array.EcArray
-
Returns true if the result is an array.
- isDest(V, E) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- isDest(V, E) - Method in interface com.eduworks.ec.graph.Graph
-
Returns true if vertex is the destination of edge.
- isIeOrEdge() - Static method in class com.eduworks.ec.browser.EcBrowserDetection
-
- isIncident(V, E) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- isIncident(V, E) - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns true if vertex and edge
are incident to each other.
- isNeighbor(V, V) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- isNeighbor(V, V) - Method in interface com.eduworks.ec.graph.Hypergraph
-
Returns true if v1 and v2 share an
incident edge.
- isNodeJs - Static variable in class com.eduworks.ec.remote.EcNodeJs
-
Method handle for httpStatus.
- isObject(Object) - Static method in class com.eduworks.ec.array.EcArray
-
Returns true if the result is an object.
- isObject(Object) - Static method in class com.eduworks.ec.array.EcObject
-
Returns true if the result is an object.
- isPredecessor(V, V) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- isPredecessor(V, V) - Method in interface com.eduworks.ec.graph.Graph
-
Returns true if v1 is a predecessor of v2 in this graph.
- isSource(V, E) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- isSource(V, E) - Method in interface com.eduworks.ec.graph.Graph
-
Returns true if vertex is the source of edge.
- isStopped() - Method in class com.eduworks.ec.array.EcAsyncHelper
-
Is preventing 'after' from being called?
- isSuccessor(V, V) - Method in class com.eduworks.ec.graph.EcDirectedGraph
-
- isSuccessor(V, V) - Method in interface com.eduworks.ec.graph.Graph
-
Returns true if v1 is a successor of v2 in this graph.