Uses of Class
oracle.pgx.api.PgxCollection
-
Packages that use PgxCollection Package Description oracle.pgx.api This package contains the main Java APIs. -
-
Uses of PgxCollection in oracle.pgx.api
Subclasses of PgxCollection in oracle.pgx.api Modifier and Type Class Description class
ComponentCollection<ID>
class
EdgeCollection
A collection of edges.class
EdgeSequence
An ordered sequence of edges which may contain duplicates.class
EdgeSet
An unordered set of edges (no duplicates).class
GraphEntityCollection<E extends PgxEntity<ID>,ID>
A collection of vertices/edges.class
ScalarCollection<E>
A collection of scalars.class
ScalarSequence<E>
An ordered sequence of scalars which may contain duplicates.class
ScalarSet<E>
An unordered set of scalars that does not contain duplicates.class
VertexCollection<ID>
A collection of vertices.class
VertexSequence<ID>
An ordered sequence of vertices which may contain duplicates.class
VertexSet<ID>
An unordered set of vertices (no duplicates).Methods in oracle.pgx.api that return PgxCollection Modifier and Type Method Description PgxCollection<E,ID>
PgxCollection. clone()
PgxCollection<E,ID>
PgxCollection. clone(java.lang.String newName)
Blocking version ofclone(String)
.PgxCollection<E,ID>
PgxCollection. toMutable()
Blocking version oftoMutableAsync()
.PgxCollection<E,ID>
PgxCollection. toMutable(java.lang.String newName)
Blocking version oftoMutableAsync(String)
.Methods in oracle.pgx.api that return types with arguments of type PgxCollection Modifier and Type Method Description PgxFuture<PgxCollection<PgxVertex<ID>,ID>>
ComponentCollection. cloneAsync(java.lang.String newName)
PgxFuture<PgxCollection<E,ID>>
PgxCollection. cloneAsync()
PgxFuture<PgxCollection<E,ID>>
PgxCollection. cloneAsync(java.lang.String newName)
Clone an existing collection.java.util.Map<java.lang.String,PgxCollection<? extends PgxEntity<?>,?>>
PgxGraph. getCollections()
Blocking version ofPgxGraph.getCollectionsAsync()
.PgxFuture<java.util.Map<java.lang.String,PgxCollection<? extends PgxEntity<?>,?>>>
PgxGraph. getCollectionsAsync()
Retrieves all currently allocated collections associated with the graph.PgxFuture<PgxCollection<PgxVertex<ID>,ID>>
ComponentCollection. toMutableAsync(java.lang.String newName)
PgxFuture<PgxCollection<E,ID>>
PgxCollection. toMutableAsync()
Create a mutable copy of an existing collectionPgxFuture<PgxCollection<E,ID>>
PgxCollection. toMutableAsync(java.lang.String newName)
Create a mutable copy of an existing collection
-