Uses of Class
oracle.pgx.api.Namespace
-
Packages that use Namespace Package Description oracle.pgx.api This package contains the main Java APIs. -
-
Uses of Namespace in oracle.pgx.api
Fields in oracle.pgx.api declared as Namespace Modifier and Type Field Description static Namespace
Namespace. PRIVATE
Namespace for session-private objectsstatic Namespace
Namespace. PUBLIC
Namespace for published objectsMethods in oracle.pgx.api that return Namespace Modifier and Type Method Description static Namespace
Namespace. fromId(oracle.pgx.common.PgxId namespaceId)
Creates a namespace from the givenPgxId
.Methods in oracle.pgx.api with parameters of type Namespace Modifier and Type Method Description <V> EdgeProperty<V>
PgxGraph. getEdgeProperty(Namespace namespace, java.lang.String name)
Blocking version ofPgxGraph.getEdgePropertyAsync(Namespace, String)
.<V> PgxFuture<EdgeProperty<V>>
PgxGraph. getEdgePropertyAsync(Namespace namespace, java.lang.String name)
Gets an edge property of this graph in the given namespace.PgxGraph
PgxSession. getGraph(Namespace namespace, java.lang.String name)
Blocking version ofPgxSession.getGraphAsync(String)
.PgxFuture<PgxGraph>
PgxSession. getGraphAsync(Namespace namespace, java.lang.String name)
References a graph with namename
within the given namespace: - ifnamespace
isPRIVATE
, than the search occurs on already referenced snapshots of the graph with namename
and the most recent snapshot is returned - ifnamespace
isPUBLIC
, then the search occurs on published graphs and the most recent snapshot of the published graph with namename
is returned - ifnamespace
isnull
, then the PRIVATE namespace is searched first and, if no snapshot is found, the PUBLIC namespace is then searched, according to the shadowing rulesjava.util.List<java.lang.String>
PgxSession. getGraphs(Namespace namespace)
Blocking version ofPgxSession.getGraphsAsync(Namespace)
.PgxFuture<java.util.List<java.lang.String>>
PgxSession. getGraphsAsync(Namespace namespace)
Returns a collection of graph names accessible under the given namespace.<ID,V>
VertexProperty<ID,V>PgxGraph. getVertexProperty(Namespace namespace, java.lang.String name)
Blocking version ofPgxGraph.getVertexPropertyAsync(Namespace, String)
.<ID,V>
PgxFuture<VertexProperty<ID,V>>PgxGraph. getVertexPropertyAsync(Namespace namespace, java.lang.String name)
Gets a vertex property of this graph in the given namespace.
-