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 NamespaceNamespace. PRIVATENamespace for session-private objectsstatic NamespaceNamespace. PUBLICNamespace for published objectsMethods in oracle.pgx.api that return Namespace Modifier and Type Method Description static NamespaceNamespace. 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.PgxGraphPgxSession. 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 namenamewithin the given namespace: - ifnamespaceisPRIVATE, than the search occurs on already referenced snapshots of the graph with namenameand the most recent snapshot is returned - ifnamespaceisPUBLIC, then the search occurs on published graphs and the most recent snapshot of the published graph with namenameis returned - ifnamespaceisnull, 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.
-