Package | Description |
---|---|
oracle.pgx.algorithm |
Modifier and Type | Method and Description |
---|---|
default EdgeSet |
EdgeSet.clone()
Clone this edge set.
|
static EdgeSet |
EdgeSet.create()
Instantiate a new edge set.
|
EdgeSet |
EdgeSet.filter(EdgeProperty<java.lang.Boolean> property)
Filter the edges in the set by the given boolean property.
|
EdgeSet |
EdgeSet.filter(java.util.function.Predicate<PgxEdge> predicate)
Filter the edges in the set by the given predicate.
|
EdgeSet |
PgxGraph.getEdges()
Return a (lazy) set of edges that can be iterated over.
|
EdgeSet |
PgxVertex.getInEdges()
Returns all incoming edges of this vertex.
|
EdgeSet |
PgxVertex.getOutEdges()
Returns all outgoing edges of this vertex.
|
EdgeSet |
EdgeSet.orderBy(EdgeProperty vertexProperty, Order order)
Order the edges based on the value of the property.
|
EdgeSet |
EdgeSet.orderBy(java.util.function.Function<PgxEdge,java.lang.Number> transform, Order order)
Order the edges in the set based on the result of the transformation function.
|