Uses of Class
oracle.pgx.api.PgxGraph.MultiEdges
-
Packages that use PgxGraph.MultiEdges Package Description oracle.pgx.api This package contains the main Java APIs. -
-
Uses of PgxGraph.MultiEdges in oracle.pgx.api
Methods in oracle.pgx.api that return PgxGraph.MultiEdges Modifier and Type Method Description static PgxGraph.MultiEdges
PgxGraph.MultiEdges. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PgxGraph.MultiEdges[]
PgxGraph.MultiEdges. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in oracle.pgx.api with parameters of type PgxGraph.MultiEdges Modifier and Type Method Description B
MutationStrategyBuilder. setMultiEdges(PgxGraph.MultiEdges multiEdges)
PgxGraph
PgxGraph. simplify(java.util.Collection<VertexProperty<?,?>> vertexProps, java.util.Collection<EdgeProperty<?>> edgeProps, PgxGraph.MultiEdges multiEdges, PgxGraph.SelfEdges selfEdges, PgxGraph.TrivialVertices trivialVertices, PgxGraph.Mode mode, java.lang.String newGraphName)
PgxGraph
PgxGraph. simplify(PgxGraph.MultiEdges multiEdges, PgxGraph.SelfEdges selfEdges, PgxGraph.TrivialVertices trivialVertices, PgxGraph.Mode mode, java.lang.String newGraphName)
Blocking version ofPgxGraph.simplifyAsync(MultiEdges, SelfEdges, TrivialVertices, Mode, String)
.PgxFuture<PgxGraph>
PgxGraph. simplifyAsync(java.util.Collection<VertexProperty<?,?>> vertexProps, java.util.Collection<EdgeProperty<?>> edgeProps, PgxGraph.MultiEdges multiEdges, PgxGraph.SelfEdges selfEdges, PgxGraph.TrivialVertices trivialVertices, PgxGraph.Mode mode, java.lang.String newGraphName)
Create a simplified version of a graph.PgxFuture<PgxGraph>
PgxGraph. simplifyAsync(PgxGraph.MultiEdges multiEdges, PgxGraph.SelfEdges selfEdges, PgxGraph.TrivialVertices trivialVertices, PgxGraph.Mode mode, java.lang.String newGraphName)
Convenience method forPgxGraph.simplifyAsync(Collection, Collection, MultiEdges, SelfEdges, TrivialVertices, Mode, String)
Passing Collection(vertexProperties) asVertexProperty.ALL
Collection(edgeProperties) asEdgeProperty.ALL
-