Package | Description |
---|---|
oracle.pgx.algorithm |
Modifier and Type | Method and Description |
---|---|
static Order |
Order.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Order[] |
Order.values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
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.
|
VertexSet |
VertexSet.orderBy(java.util.function.Function<PgxVertex,java.lang.Number> transform, Order order)
Order the vertices in the set based on the result of the transformation function.
|
VertexSet |
VertexSet.orderBy(VertexProperty vertexProperty, Order order)
Order the vertices based on the value of the property.
|