- cap(String, String...) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- Channelizer - Interface in org.apache.tinkerpop.gremlin.driver
-
Client-side channel initializer interface.
- channelizer(String) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
Specify the
Channelizer
implementation to use on the client when creating a
Connection
.
- channelizer(Class) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
Specify the
Channelizer
implementation to use on the client when creating a
Connection
.
- Channelizer.AbstractChannelizer - Class in org.apache.tinkerpop.gremlin.driver
-
- Channelizer.NioChannelizer - Class in org.apache.tinkerpop.gremlin.driver
-
- Channelizer.WebSocketChannelizer - Class in org.apache.tinkerpop.gremlin.driver
-
- checkEdgeLegality(Direction, String) - Method in class org.apache.tinkerpop.gremlin.process.computer.GraphFilter
-
- checkEdgeLegality(Direction) - Method in class org.apache.tinkerpop.gremlin.process.computer.GraphFilter
-
- choose(Traversal<?, M>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- choose(Traversal<?, ?>, Traversal<?, E2>, Traversal<?, E2>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- choose(Function<E, M>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- choose(Predicate<E>, Traversal<?, E2>, Traversal<?, E2>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- chooseConnection(RequestMessage) - Method in class org.apache.tinkerpop.gremlin.driver.Client
-
Chooses a Connection
to write the message to.
- chooseConnection(RequestMessage) - Method in class org.apache.tinkerpop.gremlin.driver.Client.ClusteredClient
-
- chooseConnection(RequestMessage) - Method in class org.apache.tinkerpop.gremlin.driver.Client.ReboundClusteredClient
-
Deprecated.
- chooseConnection(RequestMessage) - Method in class org.apache.tinkerpop.gremlin.driver.Client.SessionedClient
-
Since the session is bound to a single host, simply borrow a connection from that pool.
- clearTransactionListeners() - Method in interface org.apache.tinkerpop.gremlin.structure.Transaction
-
Removes all transaction listeners.
- Client - Class in org.apache.tinkerpop.gremlin.driver
-
A
Client
is constructed from a
Cluster
and represents a way to send messages to Gremlin Server.
- Client.AliasClusteredClient - Class in org.apache.tinkerpop.gremlin.driver
-
- Client.ClusteredClient - Class in org.apache.tinkerpop.gremlin.driver
-
A Client
implementation that does not operate in a session.
- Client.ReboundClusteredClient - Class in org.apache.tinkerpop.gremlin.driver
-
- Client.SessionedClient - Class in org.apache.tinkerpop.gremlin.driver
-
A Client
implementation that operates in the context of a session.
- Client.SessionSettings - Class in org.apache.tinkerpop.gremlin.driver
-
Settings for a
Client
that involve a session.
- Client.SessionSettings.Builder - Class in org.apache.tinkerpop.gremlin.driver
-
- Client.Settings - Class in org.apache.tinkerpop.gremlin.driver
-
Settings given to
Cluster#connect(Settings)
that configures how a
Client
will behave.
- Client.Settings.Builder - Class in org.apache.tinkerpop.gremlin.driver
-
- clone() - Method in class org.apache.tinkerpop.gremlin.process.computer.GraphFilter
-
- clone() - Method in interface org.apache.tinkerpop.gremlin.process.computer.MapReduce
-
When multiple workers on a single machine need MapReduce instances, it is possible to use clone.
- clone() - Method in class org.apache.tinkerpop.gremlin.process.computer.ranking.pagerank.PageRankVertexProgram
-
- clone() - Method in class org.apache.tinkerpop.gremlin.process.computer.traversal.TraversalVertexProgram
-
- clone() - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram
-
When multiple workers on a single machine need VertexProgram instances, it is possible to use clone.
- clone() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal.Admin
-
- clone() - Method in class org.apache.tinkerpop.gremlin.process.traversal.P
-
- clone() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Path
-
- clone() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Step
-
Cloning is used to duplicate steps for the purpose of traversal optimization and OLTP replication.
- clone() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal.Admin
-
Cloning is used to duplicate the traversal typically in OLAP environments.
- clone() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects
-
Cloning is used to duplicate the sideEffects typically in distributed execution environments.
- clone() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
The clone-method should be used to create immutable traversal sources with each call to a configuration method.
- clone() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategies
-
- clone() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traverser
-
Traverser cloning is important when splitting a traverser at a bifurcation point in a traversal.
- close(Channel) - Method in class org.apache.tinkerpop.gremlin.driver.Channelizer.AbstractChannelizer
-
- close(Channel) - Method in interface org.apache.tinkerpop.gremlin.driver.Channelizer
-
Called on Connection.close()
to perform an Channelizer
specific functions.
- close(Channel) - Method in class org.apache.tinkerpop.gremlin.driver.Channelizer.WebSocketChannelizer
-
Sends a CloseWebSocketFrame
to the server for the specified channel.
- close() - Method in class org.apache.tinkerpop.gremlin.driver.Client
-
- close() - Method in class org.apache.tinkerpop.gremlin.driver.Cluster
-
- close() - Method in interface org.apache.tinkerpop.gremlin.process.computer.ComputerResult
-
- close() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph
-
Closing a Graph
is equivalent to "shutdown" and implies that no futher operations can be executed on
the instance.
- close() - Method in interface org.apache.tinkerpop.gremlin.structure.Transaction
-
- closeAsync() - Method in class org.apache.tinkerpop.gremlin.driver.Client
-
Asynchronous close of the Client
.
- closeAsync() - Method in class org.apache.tinkerpop.gremlin.driver.Client.ClusteredClient
-
Closes all the connection pools on all hosts.
- closeAsync() - Method in class org.apache.tinkerpop.gremlin.driver.Client.ReboundClusteredClient
-
Deprecated.
Prevents messages from being sent from this Client
.
- closeAsync() - Method in class org.apache.tinkerpop.gremlin.driver.Client.SessionedClient
-
Close the bound ConnectionPool
.
- closeAsync() - Method in class org.apache.tinkerpop.gremlin.driver.Cluster
-
- cluster - Variable in class org.apache.tinkerpop.gremlin.driver.Channelizer.AbstractChannelizer
-
- cluster - Variable in class org.apache.tinkerpop.gremlin.driver.Client
-
- Cluster - Class in org.apache.tinkerpop.gremlin.driver
-
A connection to a set of one or more Gremlin Server instances.
- CLUSTER - Static variable in class org.apache.tinkerpop.gremlin.process.computer.clustering.peerpressure.PeerPressureVertexProgram
-
- Cluster.Builder - Class in org.apache.tinkerpop.gremlin.driver
-
- coalesce(Traversal<?, E2>...) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- coin(double) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
Filter the E
object given a biased coin toss.
- Column - Enum in org.apache.tinkerpop.gremlin.structure
-
Column references a particular type of column in a complex data structure such as a
Map
, a
Map.Entry
, or a
Path
.
- combine(MK, Iterator<MV>, MapReduce.ReduceEmitter<RK, RV>) - Method in interface org.apache.tinkerpop.gremlin.process.computer.MapReduce
-
The combine() method is logically executed at all "machines" in parallel.
- combine(M, M) - Method in interface org.apache.tinkerpop.gremlin.process.computer.MessageCombiner
-
Combine two messages and return a message containing the combination.
- commit() - Method in interface org.apache.tinkerpop.gremlin.structure.Transaction
-
Commits a transaction.
- Compare - Enum in org.apache.tinkerpop.gremlin.process.traversal
-
Compare
is a
BiPredicate
that determines whether the first argument is
==
,
!=
,
>
,
>=
,
<
,
<=
to the second argument.
- compare(Object, Object) - Method in enum org.apache.tinkerpop.gremlin.process.traversal.Order
- compareTo(MapReduce.NullObject) - Method in class org.apache.tinkerpop.gremlin.process.computer.MapReduce.NullObject
-
- compareTo(Class<? extends TraversalStrategy>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategy
-
- compareTo(Class<? extends TraversalStrategy>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategy.DecorationStrategy
-
- compareTo(Class<? extends TraversalStrategy>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategy.FinalizationStrategy
-
- compareTo(Class<? extends TraversalStrategy>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategy.OptimizationStrategy
-
- compareTo(Class<? extends TraversalStrategy>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategy.ProviderOptimizationStrategy
-
- compareTo(Class<? extends TraversalStrategy>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategy.VerificationStrategy
-
- compareTo(Traverser<T>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traverser
-
If the underlying object of the traverser is comparable, compare it with the other traverser.
- compute() - Static method in class org.apache.tinkerpop.gremlin.process.computer.Computer
-
- compute(Class<? extends GraphComputer>) - Static method in class org.apache.tinkerpop.gremlin.process.computer.Computer
-
- compute(Class<C>) - Method in interface org.apache.tinkerpop.gremlin.structure.Graph
-
Declare the
GraphComputer
to use for OLAP operations on the graph.
- compute() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph
-
Generate a
GraphComputer
using the default engine of the underlying graph system.
- Computer - Class in org.apache.tinkerpop.gremlin.process.computer
-
- computerHasAlreadyBeenSubmittedAVertexProgram() - Static method in class org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Exceptions
-
- computerHasNoVertexProgramNorMapReducers() - Static method in class org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Exceptions
-
- computerRequiresMoreWorkersThanSupported(int, int) - Static method in class org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Exceptions
-
- ComputerResult - Interface in org.apache.tinkerpop.gremlin.process.computer
-
- configuration() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph
-
Get the Configuration
associated with the construction of this graph.
- configure(ChannelPipeline) - Method in class org.apache.tinkerpop.gremlin.driver.Channelizer.AbstractChannelizer
-
- configure(ChannelPipeline) - Method in class org.apache.tinkerpop.gremlin.driver.Channelizer.NioChannelizer
-
- configure(ChannelPipeline) - Method in class org.apache.tinkerpop.gremlin.driver.Channelizer.WebSocketChannelizer
-
- configure(Map<String, Object>, Map<String, Graph>) - Method in interface org.apache.tinkerpop.gremlin.driver.MessageSerializer
-
Configure the serializer with mapper settings as required.
- configure(String, Object) - Method in class org.apache.tinkerpop.gremlin.process.computer.Computer
-
- configure(String, Object) - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer
-
Set an arbitrary configuration key/value for the underlying
Configuration
in the
GraphComputer
.
- configure(Object...) - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram.Builder
-
This method should only be used by the underlying compute engine.
- connect() - Method in class org.apache.tinkerpop.gremlin.driver.Cluster
-
Creates a
Client.ClusteredClient
instance to this
Cluster
, meaning requests will be routed to
one or more servers (depending on the cluster configuration), where each request represents the entirety of a
transaction.
- connect(String) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster
-
Creates a
Client.SessionedClient
instance to this
Cluster
, meaning requests will be routed to
a single server (randomly selected from the cluster), where the same bindings will be available on each request.
- connect(String, boolean) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster
-
Creates a
Client.SessionedClient
instance to this
Cluster
, meaning requests will be routed to
a single server (randomly selected from the cluster), where the same bindings will be available on each request.
- connect(Client.Settings) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster
-
Creates a new
Client
based on the settings provided.
- connected() - Method in interface org.apache.tinkerpop.gremlin.driver.Channelizer
-
Called after the channel connects.
- connected() - Method in class org.apache.tinkerpop.gremlin.driver.Channelizer.WebSocketChannelizer
-
- connection - Variable in class org.apache.tinkerpop.gremlin.driver.Channelizer.AbstractChannelizer
-
- constant(E2) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
Map any object to a fixed E
value.
- Contains - Enum in org.apache.tinkerpop.gremlin.process.traversal
-
Contains
is a
BiPredicate
that evaluates whether the first object is contained within (or not
within) the second collection object.
- count() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
Map the traversal stream to its reduction as a sum of the
Traverser.bulk()
values (i.e.
- count(Scope) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- cp(String, String) - Method in interface org.apache.tinkerpop.gremlin.structure.io.Storage
-
Recursively copy all the data sources from the source location to the target location.
- create() - Method in class org.apache.tinkerpop.gremlin.driver.Client.SessionSettings.Builder
-
- create() - Method in class org.apache.tinkerpop.gremlin.driver.Client.Settings.Builder
-
- create() - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
- create(Graph) - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram.Builder
-
- create(Graph) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalEngine.Builder
-
Deprecated.
- create(Graph) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource.Builder
-
- create() - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLReader.Builder
-
- create() - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLWriter.Builder
-
- create() - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphReader.ReaderBuilder
-
- create() - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONReader.Builder
-
- create() - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONWriter.Builder
-
- create() - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphWriter.WriterBuilder
-
- create() - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoReader.Builder
-
- create() - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoWriter.Builder
-
Create the GryoWriter
.
- create() - Method in interface org.apache.tinkerpop.gremlin.structure.io.Io.Builder
-
Vendors call this method in the
Graph.io(Io.Builder)
method to construct the
Io
instance
and return the value.
- createIoBuilder(String) - Static method in class org.apache.tinkerpop.gremlin.structure.io.IoCore
-
- createMapper() - Method in interface org.apache.tinkerpop.gremlin.structure.io.Mapper
-
Create a new instance of the internal object mapper that an implementation represents.
- createMapReduce(Graph, Configuration) - Static method in interface org.apache.tinkerpop.gremlin.process.computer.MapReduce
-
A helper method to construct a
MapReduce
given the content of the supplied configuration.
- createThreadedTx() - Method in interface org.apache.tinkerpop.gremlin.structure.Transaction
-
Creates a transaction that can be executed across multiple threads.
- createVertexProgram(Graph, Configuration) - Static method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram
-
A helper method to construct a
VertexProgram
given the content of the supplied configuration.
- credentials(String, String) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
- cyclicPath() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- Edge - Interface in org.apache.tinkerpop.gremlin.structure
-
- edge() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features
-
Gets the features related to "edge" operation.
- Edge.Exceptions - Class in org.apache.tinkerpop.gremlin.structure
-
Common exceptions to use with an edge.
- edgeAdditionsNotSupported() - Static method in class org.apache.tinkerpop.gremlin.structure.Vertex.Exceptions
-
- edgeFilterAccessesAdjacentVertices(Traversal<Vertex, Edge>) - Static method in class org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Exceptions
-
- edgeFunction - Variable in class org.apache.tinkerpop.gremlin.process.computer.MessageScope.Local
-
- edgeKeyTypes(Map<String, String>) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLWriter.Builder
-
Map of the data types of the edge keys.
- edgeLabelKey(String) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLReader.Builder
-
The key to use as the edge label.
- edgeLabelKey(String) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLWriter.Builder
-
Set the name of the edge label in the GraphML.
- edgeRemovalNotSupported() - Static method in class org.apache.tinkerpop.gremlin.structure.Edge.Exceptions
-
- edges(Traversal.Admin<Vertex, Edge>) - Method in class org.apache.tinkerpop.gremlin.process.computer.clustering.peerpressure.PeerPressureVertexProgram.Builder
-
- edges(Traversal<Vertex, Edge>) - Method in class org.apache.tinkerpop.gremlin.process.computer.Computer
-
- edges(Traversal<Vertex, Edge>) - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer
-
Add a filter that will limit which edges of the vertices are loaded from the graph source.
- edges(Traversal.Admin<Vertex, Edge>) - Method in class org.apache.tinkerpop.gremlin.process.computer.ranking.pagerank.PageRankVertexProgram.Builder
-
- edges(Object...) - Method in interface org.apache.tinkerpop.gremlin.structure.Graph
-
Get the
Edge
objects in this graph with the provided edge ids.
- edges(Direction, String...) - Method in interface org.apache.tinkerpop.gremlin.structure.Vertex
-
- edgeWithIdAlreadyExists(Object) - Static method in class org.apache.tinkerpop.gremlin.structure.Graph.Exceptions
-
- Element - Interface in org.apache.tinkerpop.gremlin.structure
-
- element() - Method in interface org.apache.tinkerpop.gremlin.structure.Property
-
Get the element that this property is associated with.
- element() - Method in interface org.apache.tinkerpop.gremlin.structure.VertexProperty
-
Gets the
Vertex
that owns this
VertexProperty
.
- Element.Exceptions - Class in org.apache.tinkerpop.gremlin.structure
-
Common exceptions to use with an element.
- elementAlreadyRemoved(Class<? extends Element>, Object) - Static method in class org.apache.tinkerpop.gremlin.structure.Element.Exceptions
-
- elementNotFound(Class<? extends Element>, Object) - Static method in class org.apache.tinkerpop.gremlin.structure.Graph.Exceptions
-
- elementNotFound(Class<? extends Element>, Object, Exception) - Static method in class org.apache.tinkerpop.gremlin.structure.Graph.Exceptions
-
- emit(K, V) - Method in interface org.apache.tinkerpop.gremlin.process.computer.MapReduce.MapEmitter
-
- emit(V) - Method in interface org.apache.tinkerpop.gremlin.process.computer.MapReduce.MapEmitter
-
- emit(OK, OV) - Method in interface org.apache.tinkerpop.gremlin.process.computer.MapReduce.ReduceEmitter
-
- emit(OV) - Method in interface org.apache.tinkerpop.gremlin.process.computer.MapReduce.ReduceEmitter
-
- emit(Traversal<?, ?>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- emit(Predicate<Traverser<E>>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- emit() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- empty() - Static method in interface org.apache.tinkerpop.gremlin.structure.Property
-
Create an empty property that is not present.
- empty() - Static method in interface org.apache.tinkerpop.gremlin.structure.VertexProperty
-
Constructs an empty VertexProperty
.
- EMPTY_ARGS - Static variable in interface org.apache.tinkerpop.gremlin.structure.Vertex
-
- enableSsl(boolean) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
Enables connectivity over SSL - note that the server should be configured with SSL turned on for this
setting to work properly.
- engine(TraversalEngine.Builder) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource.Builder
-
- eq(V) - Static method in class org.apache.tinkerpop.gremlin.process.traversal.P
-
- equals(Object) - Method in class org.apache.tinkerpop.gremlin.process.computer.GraphFilter
-
- equals(Object) - Method in class org.apache.tinkerpop.gremlin.process.computer.MapReduce.NullObject
-
- equals(Object) - Method in class org.apache.tinkerpop.gremlin.process.computer.MemoryComputeKey
-
- equals(Object) - Method in class org.apache.tinkerpop.gremlin.process.computer.MessageScope.Global
-
- equals(Object) - Method in class org.apache.tinkerpop.gremlin.process.computer.MessageScope.Local
-
- equals(Object) - Method in class org.apache.tinkerpop.gremlin.process.computer.VertexComputeKey
-
- equals(Object) - Method in class org.apache.tinkerpop.gremlin.process.traversal.P
-
- equals(Step, boolean) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Step
-
Compare the current step with another step.
- equals(Traversal.Admin<S, E>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal.Admin
-
- Exceptions() - Constructor for class org.apache.tinkerpop.gremlin.process.traversal.Path.Exceptions
-
- Exceptions() - Constructor for class org.apache.tinkerpop.gremlin.process.traversal.Traversal.Exceptions
-
- Exceptions() - Constructor for class org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects.Exceptions
-
- Exceptions() - Constructor for class org.apache.tinkerpop.gremlin.structure.Element.Exceptions
-
- Exceptions() - Constructor for class org.apache.tinkerpop.gremlin.structure.Graph.Exceptions
-
- Exceptions() - Constructor for class org.apache.tinkerpop.gremlin.structure.io.Io.Exceptions
-
- execute(Vertex, Messenger<Pair<Serializable, Double>>, Memory) - Method in class org.apache.tinkerpop.gremlin.process.computer.clustering.peerpressure.PeerPressureVertexProgram
-
- execute(Vertex, Messenger<Double>, Memory) - Method in class org.apache.tinkerpop.gremlin.process.computer.ranking.pagerank.PageRankVertexProgram
-
- execute(Vertex, Messenger<TraverserSet<Object>>, Memory) - Method in class org.apache.tinkerpop.gremlin.process.computer.traversal.TraversalVertexProgram
-
- execute(Vertex, Messenger<M>, Memory) - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram
-
This method denotes the main body of the computation and is executed on each vertex in the graph.
- exists(String) - Method in interface org.apache.tinkerpop.gremlin.process.computer.Memory
-
Whether the key exists in the memory.
- exists(String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects
-
Return true if the key is a registered side-effect.
- exists(String) - Method in interface org.apache.tinkerpop.gremlin.structure.io.Storage
-
Determine whether the specified location has a data source.
- explain() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal
-
Return a
TraversalExplanation
that shows how this traversal will mutate with each applied
TraversalStrategy
.
- exponentialBackoff() - Method in class org.apache.tinkerpop.gremlin.structure.Transaction.Workload
-
Executes the
Transaction.Workload
with the default number of retries and with a exponentially increasing
number of milliseconds between each retry using the default retry delay.
- exponentialBackoff(int) - Method in class org.apache.tinkerpop.gremlin.structure.Transaction.Workload
-
Executes the
Transaction.Workload
with a number of retries and with a exponentially increasing number of
milliseconds between each retry using the default retry delay.
- exponentialBackoff(int, long) - Method in class org.apache.tinkerpop.gremlin.structure.Transaction.Workload
-
Executes the
Transaction.Workload
with a number of retries and with a exponentially increasing number of
milliseconds between each retry.
- exponentialBackoff(int, long, Set<Class>) - Method in class org.apache.tinkerpop.gremlin.structure.Transaction.Workload
-
Executes the
Transaction.Workload
with a number of retries and with a exponentially increasing number of
milliseconds between each retry.
- extend(Object, Set<String>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Path
-
Add a new step to the path with an object and any number of associated labels.
- extend(Set<String>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Path
-
Add labels to the head of the path.
- generate(S, Step<S, ?>, long) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraverserGenerator
-
- generateFinalResult(Iterator<KeyValue<RK, RV>>) - Method in interface org.apache.tinkerpop.gremlin.process.computer.MapReduce
-
The key/value pairs emitted by reduce() (or map() in a map-only job) can be iterated to generate a local JVM Java object.
- generateIterator(Iterator<S>, Step<S, ?>, long) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraverserGenerator
-
- get(AuthProperties.Property) - Method in class org.apache.tinkerpop.gremlin.driver.AuthProperties
-
Gets a property given the key.
- get(Class<? extends T>) - Method in class org.apache.tinkerpop.gremlin.driver.Result
-
Gets the result item by casting it to the specified
Class
.
- get(String) - Method in interface org.apache.tinkerpop.gremlin.process.computer.Memory
-
Get the value associated with the provided key.
- get() - Method in class org.apache.tinkerpop.gremlin.process.computer.MessageScope.Local.ReverseTraversalSupplier
-
- get(String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Path
-
Get the object associated with the particular label of the path.
- get(Pop, String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Path
-
Pop the object(s) associated with the label of the path.
- get(int) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Path
-
Get the object associated with the specified index into the path.
- get(String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects
-
Get the sideEffect associated with the provided key.
- get() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traverser
-
Get the object that the traverser is current at.
- get(String) - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Variables
-
Gets a variable.
- getAccessor() - Method in enum org.apache.tinkerpop.gremlin.structure.T
-
- getAddress() - Method in class org.apache.tinkerpop.gremlin.driver.Host
-
- getAvailableItemCount() - Method in class org.apache.tinkerpop.gremlin.driver.ResultSet
-
Gets the number of items available on the client.
- getBiPredicate() - Method in class org.apache.tinkerpop.gremlin.process.traversal.P
-
- getBoolean() - Method in class org.apache.tinkerpop.gremlin.driver.Result
-
Gets the result item by coercing it to an boolean
.
- getByte() - Method in class org.apache.tinkerpop.gremlin.driver.Result
-
Gets the result item by coercing it to an byte
.
- getCardinality(String) - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.VertexFeatures
-
- getCluster() - Method in class org.apache.tinkerpop.gremlin.driver.Client
-
Gets the
Cluster
that spawned this
Client
.
- getDouble() - Method in class org.apache.tinkerpop.gremlin.driver.Result
-
Gets the result item by coercing it to an double
.
- getEdge() - Method in class org.apache.tinkerpop.gremlin.driver.Result
-
Gets the result item by casting it to an
Edge
.
- getEdgeFilter() - Method in class org.apache.tinkerpop.gremlin.process.computer.GraphFilter
-
- getEdgeFunction() - Method in class org.apache.tinkerpop.gremlin.process.computer.MessageScope.Local
-
- getElement() - Method in class org.apache.tinkerpop.gremlin.driver.Result
-
Gets the result item by casting it to an
Element
.
- getEndStep() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal.Admin
-
Get the end/tail of the traversal.
- getFeatures() - Method in class org.apache.tinkerpop.gremlin.process.computer.clustering.peerpressure.PeerPressureVertexProgram
-
- getFeatures() - Method in class org.apache.tinkerpop.gremlin.process.computer.ranking.pagerank.PageRankVertexProgram
-
- getFeatures() - Method in class org.apache.tinkerpop.gremlin.process.computer.traversal.TraversalVertexProgram
-
- getFeatures() - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram
-
- getFloat() - Method in class org.apache.tinkerpop.gremlin.driver.Result
-
Gets the result item by coercing it to an float
.
- getGraph() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal.Admin
-
- getGraph() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
Get the {@link Graph) associated with this traversal source.
- getGraphComputer() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalEngine
-
Deprecated.
- getGraphComputerClass() - Method in class org.apache.tinkerpop.gremlin.process.computer.Computer
-
- getHighestCommonNumberClass(Number...) - Static method in class org.apache.tinkerpop.gremlin.process.traversal.NumberHelper
-
- getHighestCommonNumberClass(boolean, Number...) - Static method in class org.apache.tinkerpop.gremlin.process.traversal.NumberHelper
-
- getHostUri() - Method in class org.apache.tinkerpop.gremlin.driver.Host
-
- getId() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Step
-
Get the unique id of this step.
- getIncidentTraversal() - Method in class org.apache.tinkerpop.gremlin.process.computer.MessageScope.Local
-
- getInt() - Method in class org.apache.tinkerpop.gremlin.driver.Result
-
Gets the result item by coercing it to an int
.
- getIteration() - Method in interface org.apache.tinkerpop.gremlin.process.computer.Memory
-
Get the current iteration number.
- getKey() - Method in class org.apache.tinkerpop.gremlin.process.computer.KeyValue
-
- getKey() - Method in class org.apache.tinkerpop.gremlin.process.computer.MemoryComputeKey
-
- getKey() - Method in class org.apache.tinkerpop.gremlin.process.computer.VertexComputeKey
-
- getLabels() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Step
-
Get the labels of this step.
- getLong() - Method in class org.apache.tinkerpop.gremlin.driver.Result
-
Gets the result item by coercing it to an long
.
- getMapKeySort() - Method in interface org.apache.tinkerpop.gremlin.process.computer.MapReduce
-
- getMapReducers() - Method in class org.apache.tinkerpop.gremlin.process.computer.traversal.TraversalVertexProgram
-
- getMapReducers() - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram
-
- getMaxWorkers() - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Features
-
- getMemoryComputeKeys() - Method in class org.apache.tinkerpop.gremlin.process.computer.clustering.peerpressure.PeerPressureVertexProgram
-
- getMemoryComputeKeys() - Method in class org.apache.tinkerpop.gremlin.process.computer.traversal.TraversalVertexProgram
-
- getMemoryComputeKeys() - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram
-
The
Memory
keys that will be used during the computation.
- getMemoryKey() - Method in interface org.apache.tinkerpop.gremlin.process.computer.MapReduce
-
The results of the MapReduce job are associated with a memory-key to ultimately be stored in
Memory
.
- getMessageCombiner() - Method in class org.apache.tinkerpop.gremlin.process.computer.ranking.pagerank.PageRankVertexProgram
-
- getMessageCombiner() - Method in class org.apache.tinkerpop.gremlin.process.computer.traversal.TraversalVertexProgram
-
- getMessageCombiner() - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram
-
Combine the messages in route to a particular vertex.
- getMessageScopes(Memory) - Method in class org.apache.tinkerpop.gremlin.process.computer.clustering.peerpressure.PeerPressureVertexProgram
-
- getMessageScopes(Memory) - Method in class org.apache.tinkerpop.gremlin.process.computer.ranking.pagerank.PageRankVertexProgram
-
- getMessageScopes(Memory) - Method in class org.apache.tinkerpop.gremlin.process.computer.traversal.TraversalVertexProgram
-
- getMessageScopes(Memory) - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram
-
This method returns all the
MessageScope
possibilities for a particular iteration of the vertex program.
- getNextStep() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Step
-
Get the next step to the current step.
- getObject() - Method in class org.apache.tinkerpop.gremlin.driver.Result
-
Gets the result item.
- getOrCreate(String, Supplier<V>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects
-
- getOriginalValue() - Method in class org.apache.tinkerpop.gremlin.process.traversal.P
-
Gets the original value used at time of construction of the P
.
- getParameters() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Parameterizing
-
- getParent() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal.Admin
-
Get the
TraversalParent
Step
that is the parent of this traversal.
- getPath() - Method in class org.apache.tinkerpop.gremlin.driver.Result
-
Gets the result item by casting it to a
Path
.
- getPreferredPersist() - Method in class org.apache.tinkerpop.gremlin.process.computer.clustering.peerpressure.PeerPressureVertexProgram
-
- getPreferredPersist() - Method in class org.apache.tinkerpop.gremlin.process.computer.ranking.pagerank.PageRankVertexProgram
-
- getPreferredPersist() - Method in class org.apache.tinkerpop.gremlin.process.computer.traversal.TraversalVertexProgram
-
- getPreferredPersist() - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram
-
- getPreferredResultGraph() - Method in class org.apache.tinkerpop.gremlin.process.computer.clustering.peerpressure.PeerPressureVertexProgram
-
- getPreferredResultGraph() - Method in class org.apache.tinkerpop.gremlin.process.computer.ranking.pagerank.PageRankVertexProgram
-
- getPreferredResultGraph() - Method in class org.apache.tinkerpop.gremlin.process.computer.traversal.TraversalVertexProgram
-
- getPreferredResultGraph() - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram
-
- getPreviousStep() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Step
-
Get the step prior to the current step.
- getProperty() - Method in class org.apache.tinkerpop.gremlin.driver.Result
-
Gets the result item by casting it to a
Property
.
- getProvidedRequirements() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraverserGenerator
-
- getReduceKeySort() - Method in interface org.apache.tinkerpop.gremlin.process.computer.MapReduce
-
- getReducer() - Method in class org.apache.tinkerpop.gremlin.process.computer.MemoryComputeKey
-
- getReducer(String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects
-
Get the reducer associated with the side-effect key.
- getRegisteredSupplier(String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects
-
- getRequirements() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Step
-
Provide the necessary TraverserRequirement
that must be met by the traverser in order for the step to function properly.
- getRuntime() - Method in interface org.apache.tinkerpop.gremlin.process.computer.Memory
-
Get the amount of milliseconds the
GraphComputer
has been executing thus far.
- getSackInitialValue() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects
-
If sacks are enabled, get the initial value of the
Traverser
sack.
- getSackMerger() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects
-
If sacks are enabled and a merge function has been specified, then get it (else get null
).
- getSackSplitter() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects
-
If sacks are enabled and a split operator has been specified, then get it (else get null
).
- getSession() - Method in class org.apache.tinkerpop.gremlin.driver.Client.Settings
-
Determines if the
Client
is to be constructed with a session.
- getSessionId() - Method in class org.apache.tinkerpop.gremlin.driver.Client.SessionSettings
-
Provides the identifier of the session.
- getSettings() - Method in class org.apache.tinkerpop.gremlin.driver.Client
-
- getShort() - Method in class org.apache.tinkerpop.gremlin.driver.Result
-
Gets the result item by coercing it to an short
.
- getSideEffects() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal.Admin
-
- getSideEffects() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traverser.Admin
-
Get the sideEffects associated with the traversal of the traverser.
- getStartStep() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal.Admin
-
Get the start/head of the traversal.
- getStepId() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traverser.Admin
-
Get the step id of where the traverser is located.
- getSteps() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal.Admin
-
Get the
Step
instances associated with this traversal.
- getStrategies() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal.Admin
-
- getStrategies() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
- getStrategies(Class) - Static method in class org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategies.GlobalCache
-
- getString() - Method in class org.apache.tinkerpop.gremlin.driver.Result
-
Gets the result item by coercing it to a String
via toString()
.
- getSupplier(String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects
-
Get the supplier associated with the side-effect key.
- getTags() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traverser.Admin
-
Get the tags associated with the traverser.
- getTraversal(Graph, Configuration) - Static method in class org.apache.tinkerpop.gremlin.process.computer.traversal.TraversalVertexProgram
-
A helper method to yield a
Traversal
from the
Graph
and provided
Configuration
.
- getTraversal() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Step
-
- getTraversalCategory() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategy.DecorationStrategy
-
- getTraversalCategory() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategy.FinalizationStrategy
-
- getTraversalCategory() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategy
-
The type of traversal strategy -- i.e.
- getTraversalCategory() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategy.OptimizationStrategy
-
- getTraversalCategory() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategy.ProviderOptimizationStrategy
-
- getTraversalCategory() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategy.VerificationStrategy
-
- getTraverserGenerator() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal.Admin
-
- getTraverserRequirements() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal.Admin
-
Get the set of all TraverserRequirement
s for this traversal.
- getType() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalEngine
-
Deprecated.
- getValue() - Method in class org.apache.tinkerpop.gremlin.process.computer.KeyValue
-
- getValue() - Method in class org.apache.tinkerpop.gremlin.process.traversal.P
-
Gets the current value to be passed to the predicate for testing.
- getVertex() - Method in class org.apache.tinkerpop.gremlin.driver.Result
-
Gets the result item by casting it to a
Vertex
.
- getVertexComputeKeys() - Method in class org.apache.tinkerpop.gremlin.process.computer.clustering.peerpressure.PeerPressureVertexProgram
-
- getVertexComputeKeys() - Method in class org.apache.tinkerpop.gremlin.process.computer.ranking.pagerank.PageRankVertexProgram
-
- getVertexComputeKeys() - Method in class org.apache.tinkerpop.gremlin.process.computer.traversal.TraversalVertexProgram
-
- getVertexComputeKeys() - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram
-
The
Element
properties that will be mutated during the computation.
- getVertexFilter() - Method in class org.apache.tinkerpop.gremlin.process.computer.GraphFilter
-
- getVertexProperty() - Method in class org.apache.tinkerpop.gremlin.driver.Result
-
- getWithoutStrategies() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalEngine.Builder
-
Deprecated.
- getWithStrategies() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalEngine.Builder
-
Deprecated.
- GlobalCache() - Constructor for class org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategies.GlobalCache
-
- graph() - Method in interface org.apache.tinkerpop.gremlin.process.computer.ComputerResult
-
- graph() - Method in interface org.apache.tinkerpop.gremlin.structure.Element
-
Get the graph that this element is within.
- Graph - Interface in org.apache.tinkerpop.gremlin.structure
-
- graph() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features
-
Gets the features related to "graph" operation.
- GRAPH - Static variable in interface org.apache.tinkerpop.gremlin.structure.Graph
-
Configuration key used by GraphFactory
} to determine which graph to instantiate.
- graph(Graph) - Method in interface org.apache.tinkerpop.gremlin.structure.io.Io.Builder
-
Vendors use this method to supply the current instance of their
Graph
to the builder.
- graph() - Method in interface org.apache.tinkerpop.gremlin.structure.VertexProperty
-
Get the graph that this element is within.
- Graph.Exceptions - Class in org.apache.tinkerpop.gremlin.structure
-
Common exceptions to use with a graph.
- Graph.Features - Interface in org.apache.tinkerpop.gremlin.structure
-
An interface that represents the capabilities of a Graph
implementation.
- Graph.Features.DataTypeFeatures - Interface in org.apache.tinkerpop.gremlin.structure
-
Base interface for features that relate to supporting different data types.
- Graph.Features.EdgeFeatures - Interface in org.apache.tinkerpop.gremlin.structure
-
Features that are related to
Edge
operations.
- Graph.Features.EdgePropertyFeatures - Interface in org.apache.tinkerpop.gremlin.structure
-
- Graph.Features.ElementFeatures - Interface in org.apache.tinkerpop.gremlin.structure
-
Features that are related to
Element
objects.
- Graph.Features.FeatureSet - Interface in org.apache.tinkerpop.gremlin.structure
-
A marker interface to identify any set of Features.
- Graph.Features.GraphFeatures - Interface in org.apache.tinkerpop.gremlin.structure
-
Features specific to a operations of a "graph".
- Graph.Features.PropertyFeatures - Interface in org.apache.tinkerpop.gremlin.structure
-
- Graph.Features.VariableFeatures - Interface in org.apache.tinkerpop.gremlin.structure
-
- Graph.Features.VertexFeatures - Interface in org.apache.tinkerpop.gremlin.structure
-
Features that are related to
Vertex
operations.
- Graph.Features.VertexPropertyFeatures - Interface in org.apache.tinkerpop.gremlin.structure
-
- Graph.Hidden - Class in org.apache.tinkerpop.gremlin.structure
-
This should only be used by vendors to create keys, labels, etc.
- Graph.OptIn - Annotation Type in org.apache.tinkerpop.gremlin.structure
-
Defines the test suite that the implementer has decided to support and represents publicly as "passing".
- Graph.OptIns - Annotation Type in org.apache.tinkerpop.gremlin.structure
-
- Graph.OptOut - Annotation Type in org.apache.tinkerpop.gremlin.structure
-
Defines a test in the suite that the implementer does not want to run.
- Graph.OptOuts - Annotation Type in org.apache.tinkerpop.gremlin.structure
-
- Graph.Variables - Interface in org.apache.tinkerpop.gremlin.structure
-
Graph variables are a set of key/value pairs associated with the graph.
- Graph.Variables.Exceptions - Class in org.apache.tinkerpop.gremlin.structure
-
- GraphComputer - Interface in org.apache.tinkerpop.gremlin.process.computer
-
- GraphComputer.Exceptions - Class in org.apache.tinkerpop.gremlin.process.computer
-
- GraphComputer.Features - Interface in org.apache.tinkerpop.gremlin.process.computer
-
- GraphComputer.Persist - Enum in org.apache.tinkerpop.gremlin.process.computer
-
- GraphComputer.ResultGraph - Enum in org.apache.tinkerpop.gremlin.process.computer
-
- graphComputerNotSupported() - Static method in class org.apache.tinkerpop.gremlin.structure.Graph.Exceptions
-
- graphDoesNotSupportProvidedGraphComputer(Class) - Static method in class org.apache.tinkerpop.gremlin.structure.Graph.Exceptions
-
- GraphFilter - Class in org.apache.tinkerpop.gremlin.process.computer
-
GraphFilter is used by
GraphComputer
implementations to prune the source graph data being loaded into the OLAP system.
- GraphFilter() - Constructor for class org.apache.tinkerpop.gremlin.process.computer.GraphFilter
-
- GraphFilter.Legal - Enum in org.apache.tinkerpop.gremlin.process.computer
-
- graphFilterNotSupported() - Static method in class org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Exceptions
-
- GraphMigrator - Class in org.apache.tinkerpop.gremlin.structure.io
-
GraphMigrator
takes the data in one graph and pipes it to another graph.
- graphml() - Static method in class org.apache.tinkerpop.gremlin.structure.io.IoCore
-
- GraphMLReader - Class in org.apache.tinkerpop.gremlin.structure.io.graphml
-
GraphMLReader writes the data from a GraphML stream to a graph.
- GraphMLReader.Builder - Class in org.apache.tinkerpop.gremlin.structure.io.graphml
-
Allows configuration and construction of the GraphMLReader instance.
- GraphMLWriter - Class in org.apache.tinkerpop.gremlin.structure.io.graphml
-
GraphMLWriter writes a Graph to a GraphML OutputStream.
- GraphMLWriter.Builder - Class in org.apache.tinkerpop.gremlin.structure.io.graphml
-
- GraphReader - Interface in org.apache.tinkerpop.gremlin.structure.io
-
Functions for reading a graph and its graph elements from a different serialization format.
- GraphReader.ReaderBuilder<T extends GraphReader> - Interface in org.apache.tinkerpop.gremlin.structure.io
-
Largely a marker interface for builder classes that construct a
GraphReader
.
- graphson() - Static method in class org.apache.tinkerpop.gremlin.structure.io.IoCore
-
- GraphSONReader - Class in org.apache.tinkerpop.gremlin.structure.io.graphson
-
A @{link GraphReader} that constructs a graph from a JSON-based representation of a graph and its elements.
- GraphSONReader.Builder - Class in org.apache.tinkerpop.gremlin.structure.io.graphson
-
- GraphSONWriter - Class in org.apache.tinkerpop.gremlin.structure.io.graphson
-
A @{link GraphWriter} that writes a graph and its elements to a JSON-based representation.
- GraphSONWriter.Builder - Class in org.apache.tinkerpop.gremlin.structure.io.graphson
-
- GraphTraversal<S,E> - Interface in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph
-
- GraphTraversal.Admin<S,E> - Interface in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph
-
- GraphWriter - Interface in org.apache.tinkerpop.gremlin.structure.io
-
Functions for writing a graph and its elements to a serialized format.
- GraphWriter.WriterBuilder<T extends GraphWriter> - Interface in org.apache.tinkerpop.gremlin.structure.io
-
Largely a marker interface for builder classes that construct a
GraphWriter
.
- group() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- group(String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- groupCount() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- groupCount(String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- groupV3d0() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- groupV3d0(String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- gryo() - Static method in class org.apache.tinkerpop.gremlin.structure.io.IoCore
-
- GryoReader - Class in org.apache.tinkerpop.gremlin.structure.io.gryo
-
The
GraphReader
for the Gremlin Structure serialization format based on Kryo.
- GryoReader.Builder - Class in org.apache.tinkerpop.gremlin.structure.io.gryo
-
- GryoWriter - Class in org.apache.tinkerpop.gremlin.structure.io.gryo
-
The
GraphWriter
for the Gremlin Structure serialization format based on Kryo.
- GryoWriter.Builder - Class in org.apache.tinkerpop.gremlin.structure.io.gryo
-
- gt(V) - Static method in class org.apache.tinkerpop.gremlin.process.traversal.P
-
- gte(V) - Static method in class org.apache.tinkerpop.gremlin.process.traversal.P
-
- makeDefaultAliasMap(String) - Method in class org.apache.tinkerpop.gremlin.driver.Client
-
- manageTransactions(boolean) - Method in class org.apache.tinkerpop.gremlin.driver.Client.SessionSettings.Builder
-
If enabled, transactions will be "managed" such that each request will represent a complete transaction.
- manageTransactions() - Method in class org.apache.tinkerpop.gremlin.driver.Client.SessionSettings
-
If enabled, transactions will be "managed" such that each request will represent a complete transaction.
- map(Vertex, MapReduce.MapEmitter<MK, MV>) - Method in interface org.apache.tinkerpop.gremlin.process.computer.MapReduce
-
The map() method is logically executed at all vertices in the graph in parallel.
- map(Function<Traverser<E>, E2>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
Map a traverser referencing an object of type E
to an object of type E2
.
- map(Traversal<?, E2>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- MAP_REDUCE - Static variable in interface org.apache.tinkerpop.gremlin.process.computer.MapReduce
-
- mapKeys() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- mapper(Mapper<ObjectMapper>) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONReader.Builder
-
Override all of the GraphSONMapper
builder
options with this mapper.
- mapper(Mapper<ObjectMapper>) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONWriter.Builder
-
Override all of the builder options with this mapper.
- mapper(Mapper<Kryo>) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoReader.Builder
-
Supply a mapper GryoMapper
instance to use as the serializer for the KryoWriter
.
- mapper(Mapper<Kryo>) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoWriter.Builder
-
Supply a mapper GryoMapper
instance to use as the serializer for the KryoWriter
.
- mapper() - Method in interface org.apache.tinkerpop.gremlin.structure.io.Io
-
Constructs a
Mapper.Builder
which is responsible for constructing the abstraction over different
serialization methods.
- Mapper<T> - Interface in org.apache.tinkerpop.gremlin.structure.io
-
Represents a low-level serialization class that can be used to map classes to serializers.
- Mapper.Builder<B extends Mapper.Builder> - Interface in org.apache.tinkerpop.gremlin.structure.io
-
Largely a marker interface for builders that construct
Mapper
instances.
- mapReduce(MapReduce) - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer
-
- MapReduce<MK,MV,RK,RV,R> - Interface in org.apache.tinkerpop.gremlin.process.computer
-
A MapReduce is composed of map(), combine(), and reduce() stages.
- MapReduce.MapEmitter<K,V> - Interface in org.apache.tinkerpop.gremlin.process.computer
-
The MapEmitter is used to emit key/value pairs from the map() stage of the MapReduce job.
- MapReduce.NullObject - Class in org.apache.tinkerpop.gremlin.process.computer
-
A convenience singleton when a single key is needed so that all emitted values converge to the same combiner/reducer.
- MapReduce.ReduceEmitter<OK,OV> - Interface in org.apache.tinkerpop.gremlin.process.computer
-
The ReduceEmitter is used to emit key/value pairs from the combine() and reduce() stages of the MapReduce job.
- MapReduce.Stage - Enum in org.apache.tinkerpop.gremlin.process.computer
-
MapReduce is composed of three stages: map, combine, and reduce.
- mapValues() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- match(Traversal<?, ?>...) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
Map the
Traverser
to a
Map
of bindings as specified by the provided match traversals.
- max() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- max(Scope) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- max - Variable in class org.apache.tinkerpop.gremlin.process.traversal.NumberHelper
-
- max(Number, Number) - Static method in class org.apache.tinkerpop.gremlin.process.traversal.NumberHelper
-
- maxConnectionPoolSize(int) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
The maximum size that the ConnectionPool
can grow.
- maxContentLength(int) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
The maximum size in bytes of any request sent to the server.
- maxInProcessPerConnection(int) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
The maximum number of in-flight requests that can occur on a Connection
.
- maxIterations(int) - Method in class org.apache.tinkerpop.gremlin.process.computer.clustering.peerpressure.PeerPressureVertexProgram.Builder
-
- maxSimultaneousUsagePerConnection(int) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
The maximum number of times that a Connection
can be borrowed from the pool simultaneously.
- maxWaitForConnection(int) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
The maximum amount of time to wait for a connection to be borrowed from the connection pool.
- maxWaitForSessionClose(int) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
If the connection is using a "session" this setting represents the amount of time in milliseconds to wait
for that session to close before timing out where the default value is 3000.
- mean() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- mean(Scope) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- memory() - Method in interface org.apache.tinkerpop.gremlin.process.computer.ComputerResult
-
Get the GraphComputer's computational sideEffects known as
Memory
.
- Memory - Interface in org.apache.tinkerpop.gremlin.process.computer
-
The Memory of a
GraphComputer
is a global data structure where by vertices can communicate information with one another.
- Memory.Admin - Interface in org.apache.tinkerpop.gremlin.process.computer
-
The Admin interface is used by the
GraphComputer
to update the Memory.
- Memory.Exceptions - Class in org.apache.tinkerpop.gremlin.process.computer
-
- memoryAddOnlyDuringVertexProgramExecute(String) - Static method in class org.apache.tinkerpop.gremlin.process.computer.Memory.Exceptions
-
- MemoryComputeKey<A> - Class in org.apache.tinkerpop.gremlin.process.computer
-
A
MemoryComputeKey
specifies what keys will be used by a
Memory
during a
GraphComputer
computation.
- memoryDoesNotExist(String) - Static method in class org.apache.tinkerpop.gremlin.process.computer.Memory.Exceptions
-
- memoryIsCurrentlyImmutable() - Static method in class org.apache.tinkerpop.gremlin.process.computer.Memory.Exceptions
-
- memoryKeyCanNotBeEmpty() - Static method in class org.apache.tinkerpop.gremlin.process.computer.Memory.Exceptions
-
- memoryKeyCanNotBeNull() - Static method in class org.apache.tinkerpop.gremlin.process.computer.Memory.Exceptions
-
- memorySetOnlyDuringVertexProgramSetUpAndTerminate(String) - Static method in class org.apache.tinkerpop.gremlin.process.computer.Memory.Exceptions
-
- memoryValueCanNotBeNull() - Static method in class org.apache.tinkerpop.gremlin.process.computer.Memory.Exceptions
-
- merge(Traverser.Admin<?>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traverser.Admin
-
When two traversers are have equality with each other, then they can be merged.
- mergeInto(TraversalSideEffects) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects
-
- MessageCombiner<M> - Interface in org.apache.tinkerpop.gremlin.process.computer
-
A MessageCombiner allows two messages in route to the same vertex to be aggregated into a single message.
- MessageScope - Class in org.apache.tinkerpop.gremlin.process.computer
-
- MessageScope() - Constructor for class org.apache.tinkerpop.gremlin.process.computer.MessageScope
-
- MessageScope.Global - Class in org.apache.tinkerpop.gremlin.process.computer
-
A Global message is directed at an arbitrary vertex in the graph.
- MessageScope.Local<M> - Class in org.apache.tinkerpop.gremlin.process.computer
-
A Local message is directed to an adjacent (or "memory adjacent") vertex.
- MessageScope.Local.ReverseTraversalSupplier - Class in org.apache.tinkerpop.gremlin.process.computer
-
A helper class that can be used to generate the reverse traversal of the traversal within a
MessageScope.Local
.
- MessageSerializer - Interface in org.apache.tinkerpop.gremlin.driver
-
Serializes data to and from Gremlin Server.
- Messenger<M> - Interface in org.apache.tinkerpop.gremlin.process.computer
-
The
Messenger
serves as the routing system for messages between vertices.
- metaPropertiesNotSupported() - Static method in class org.apache.tinkerpop.gremlin.structure.VertexProperty.Exceptions
-
- migrateGraph(Graph, Graph) - Static method in class org.apache.tinkerpop.gremlin.structure.io.GraphMigrator
-
Use Gryo to pipe the data from one graph to another graph.
- migrateGraph(Graph, Graph, GraphReader, GraphWriter) - Static method in class org.apache.tinkerpop.gremlin.structure.io.GraphMigrator
-
Pipe the data from one graph to another graph.
- mimeTypesSupported() - Method in interface org.apache.tinkerpop.gremlin.driver.MessageSerializer
-
The list of mime types that the serializer supports.
- min() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- min(Scope) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- min - Variable in class org.apache.tinkerpop.gremlin.process.traversal.NumberHelper
-
- min(Number, Number) - Static method in class org.apache.tinkerpop.gremlin.process.traversal.NumberHelper
-
- minConnectionPoolSize(int) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
The minimum size of the ConnectionPool
.
- minInProcessPerConnection(int) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
The minimum number of in-flight requests that can occur on a Connection
before it is considered
for closing on return to the ConnectionPool
.
- minSimultaneousUsagePerConnection(int) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
The minimum number of times that a Connection
should be borrowed from the pool before it falls
under consideration for closing.
- mul - Variable in class org.apache.tinkerpop.gremlin.process.traversal.NumberHelper
-
- mul(Number, Number) - Static method in class org.apache.tinkerpop.gremlin.process.traversal.NumberHelper
-
- multiplePropertiesExistForProvidedKey(String) - Static method in class org.apache.tinkerpop.gremlin.structure.Vertex.Exceptions
-
- multiPropertiesNotSupported() - Static method in class org.apache.tinkerpop.gremlin.structure.VertexProperty.Exceptions
-
- MUTATED_MEMORY_KEYS - Static variable in class org.apache.tinkerpop.gremlin.process.computer.traversal.TraversalVertexProgram
-
- range(long, long) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- range(Scope, long, long) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- readEdge(InputStream, Function<Attachable<Edge>, Edge>) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLReader
-
This method is not supported for this reader.
- readEdge(InputStream, Function<Attachable<Edge>, Edge>) - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphReader
-
- readEdge(InputStream, Function<Attachable<Edge>, Edge>) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONReader
-
- readEdge(InputStream, Function<Attachable<Edge>, Edge>) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoReader
-
- reader() - Method in interface org.apache.tinkerpop.gremlin.structure.io.Io
-
- readerFormatIsForFullGraphSerializationOnly(Class<? extends GraphReader>) - Static method in class org.apache.tinkerpop.gremlin.structure.io.Io.Exceptions
-
- readGraph(InputStream, Graph) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLReader
-
- readGraph(InputStream, Graph) - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphReader
-
- readGraph(InputStream, Graph) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONReader
-
- readGraph(InputStream, Graph) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoReader
-
- readGraph(String) - Method in interface org.apache.tinkerpop.gremlin.structure.io.Io
-
- readObject(InputStream, Class<? extends C>) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLReader
-
This method is not supported for this reader.
- readObject(InputStream, Class<? extends C>) - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphReader
-
Reads an arbitrary object using the registered serializers.
- readObject(InputStream, Class<? extends C>) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONReader
-
Reads an arbitrary object using the registered serializers.
- readObject(InputStream, Class<? extends C>) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoReader
-
Reads an arbitrary object using the registered serializers.
- readProperty(InputStream, Function<Attachable<Property>, Property>) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLReader
-
This method is not supported for this reader.
- readProperty(InputStream, Function<Attachable<Property>, Property>) - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphReader
-
- readProperty(InputStream, Function<Attachable<Property>, Property>) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONReader
-
- readProperty(InputStream, Function<Attachable<Property>, Property>) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoReader
-
- readVertex(InputStream, Function<Attachable<Vertex>, Vertex>) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLReader
-
This method is not supported for this reader.
- readVertex(InputStream, Function<Attachable<Vertex>, Vertex>, Function<Attachable<Edge>, Edge>, Direction) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLReader
-
This method is not supported for this reader.
- readVertex(InputStream, GraphFilter) - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphReader
-
- readVertex(InputStream, Function<Attachable<Vertex>, Vertex>) - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphReader
-
- readVertex(InputStream, Function<Attachable<Vertex>, Vertex>, Function<Attachable<Edge>, Edge>, Direction) - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphReader
-
- readVertex(InputStream, Function<Attachable<Vertex>, Vertex>) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONReader
-
- readVertex(InputStream, Function<Attachable<Vertex>, Vertex>, Function<Attachable<Edge>, Edge>, Direction) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONReader
-
- readVertex(InputStream, GraphFilter) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoReader
-
- readVertex(InputStream, Function<Attachable<Vertex>, Vertex>) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoReader
-
- readVertex(InputStream, Function<Attachable<Vertex>, Vertex>, Function<Attachable<Edge>, Edge>, Direction) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoReader
-
- readVertexProperty(InputStream, Function<Attachable<VertexProperty>, VertexProperty>) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLReader
-
This method is not supported for this reader.
- readVertexProperty(InputStream, Function<Attachable<VertexProperty>, VertexProperty>) - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphReader
-
- readVertexProperty(InputStream, Function<Attachable<VertexProperty>, VertexProperty>) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONReader
-
- readVertexProperty(InputStream, Function<Attachable<VertexProperty>, VertexProperty>) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoReader
-
- readVertices(InputStream, Function<Attachable<Vertex>, Vertex>, Function<Attachable<Edge>, Edge>, Direction) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLReader
-
This method is not supported for this reader.
- readVertices(InputStream, Function<Attachable<Vertex>, Vertex>, Function<Attachable<Edge>, Edge>, Direction) - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphReader
-
- readVertices(InputStream, Function<Attachable<Vertex>, Vertex>, Function<Attachable<Edge>, Edge>, Direction) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONReader
-
- readVertices(InputStream, Function<Attachable<Vertex>, Vertex>, Function<Attachable<Edge>, Edge>, Direction) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoReader
-
- readWrite() - Method in interface org.apache.tinkerpop.gremlin.structure.Transaction
-
An internal function that signals a read or a write has occurred - not meant to be called directly by end users.
- rebind(String) - Method in class org.apache.tinkerpop.gremlin.driver.Client.ClusteredClient
-
Deprecated.
- rebind(Map<String, String>) - Method in class org.apache.tinkerpop.gremlin.driver.Client.ClusteredClient
-
Deprecated.
- rebind(String) - Method in class org.apache.tinkerpop.gremlin.driver.Client
-
- rebind(Map<String, String>) - Method in class org.apache.tinkerpop.gremlin.driver.Client
-
Deprecated.
- rebind(String) - Method in class org.apache.tinkerpop.gremlin.driver.Client.ReboundClusteredClient
-
Deprecated.
- receiveMessages() - Method in interface org.apache.tinkerpop.gremlin.process.computer.Messenger
-
Receive all incoming messages to the currently executing vertex.
- reconnectInterval(int) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
Time in milliseconds to wait between retries when attempting to reconnect to a dead host.
- reconnectIntialDelay(int) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
Time in milliseconds to wait before attempting to reconnect to a dead host after it has been marked dead.
- reduce(MK, Iterator<MV>, MapReduce.ReduceEmitter<RK, RV>) - Method in interface org.apache.tinkerpop.gremlin.process.computer.MapReduce
-
The reduce() method is logically on the "machine" the respective key hashes to.
- register(String, Supplier<V>, BinaryOperator<V>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects
-
- register(Class<? extends Io>, Class, Object) - Method in class org.apache.tinkerpop.gremlin.structure.io.AbstractIoRegistry
-
Add a "serializer" for the Mapper
.
- registerIfAbsent(String, Supplier<V>, BinaryOperator<V>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects
-
- registerStrategies(Class, TraversalStrategies) - Static method in class org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategies.GlobalCache
-
- registerSupplier(String, Supplier) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects
-
- registerSupplierIfAbsent(String, Supplier) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects
-
- registry(IoRegistry) - Method in interface org.apache.tinkerpop.gremlin.structure.io.Io.Builder
-
Vendors use this method to supply an
IoRegistry
to the
Io
implementation.
- remove(String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects
-
Remove both the value and registered
Supplier
associated with provided key.
- remove() - Method in interface org.apache.tinkerpop.gremlin.structure.Element
-
Removes the Element
from the graph.
- remove(String) - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Variables
-
Removes a variable.
- remove() - Method in interface org.apache.tinkerpop.gremlin.structure.Property
-
Remove the property from the associated element.
- removeLabel(String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Step
-
Remove a label from this step.
- removeStep(Step<?, ?>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal.Admin
-
Remove a
Step
from the traversal.
- removeStep(int) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal.Admin
-
Remove a
Step
from the traversal.
- removeStrategies(Class<? extends TraversalStrategy>...) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategies
-
- removeTransactionListener(Consumer<Transaction.Status>) - Method in interface org.apache.tinkerpop.gremlin.structure.Transaction
-
Removes a transaction listener.
- repeat(Traversal<?, E>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- requiresEdgeAddition() - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram.Features
-
- requiresEdgePropertyAddition() - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram.Features
-
- requiresEdgePropertyRemoval() - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram.Features
-
- requiresEdgeRemoval() - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram.Features
-
- requiresGlobalMessageScopes() - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram.Features
-
- requiresLocalMessageScopes() - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram.Features
-
- requiresVertexAddition() - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram.Features
-
- requiresVertexPropertyAddition() - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram.Features
-
- requiresVertexPropertyRemoval() - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram.Features
-
- requiresVertexRemoval() - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram.Features
-
- reset() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Step
-
Reset the state of the step such that it has no incoming starts.
- reset() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal.Admin
-
Call the
Step.reset()
method on every step in the traversal.
- resetLoops() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traverser.Admin
-
Set the number of times the traverser has gone through a loop back to 0.
- Result - Class in org.apache.tinkerpop.gremlin.driver
-
A
Result
represents a result value from the server-side
Iterator
of results.
- Result(Object) - Constructor for class org.apache.tinkerpop.gremlin.driver.Result
-
Constructs a "result" from data found in ResponseResult.getData()
.
- result(GraphComputer.ResultGraph) - Method in class org.apache.tinkerpop.gremlin.process.computer.Computer
-
- result(GraphComputer.ResultGraph) - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer
-
- resultGraphPersistCombinationNotSupported(GraphComputer.ResultGraph, GraphComputer.Persist) - Static method in class org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Exceptions
-
- resultIterationBatchSize(int) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
Override the server setting that determines how many results are returned per batch.
- ResultSet - Class in org.apache.tinkerpop.gremlin.driver
-
A ResultSet
is returned from the submission of a Gremlin script to the server and represents the
results provided by the server.
- ResultSet(ResultQueue, ExecutorService, CompletableFuture<Void>) - Constructor for class org.apache.tinkerpop.gremlin.driver.ResultSet
-
- retry() - Method in class org.apache.tinkerpop.gremlin.structure.Transaction.Workload
-
Executes the
Transaction.Workload
with the default number of retries and with the default number of
milliseconds delay between each try.
- retry(int) - Method in class org.apache.tinkerpop.gremlin.structure.Transaction.Workload
-
Executes the
Transaction.Workload
with a number of retries and with the default number of milliseconds delay
between each try.
- retry(int, long) - Method in class org.apache.tinkerpop.gremlin.structure.Transaction.Workload
-
Executes the
Transaction.Workload
with a number of retries and with a number of milliseconds delay between
each try.
- retry(int, long, Set<Class>) - Method in class org.apache.tinkerpop.gremlin.structure.Transaction.Workload
-
Executes the
Transaction.Workload
with a number of retries and with a number of milliseconds delay between each
try and will only retry on the set of supplied exceptions.
- reversed() - Method in enum org.apache.tinkerpop.gremlin.process.traversal.Order
-
Produce the opposite representation of the current Order
enum.
- ReverseTraversalSupplier(MessageScope.Local<?>) - Constructor for class org.apache.tinkerpop.gremlin.process.computer.MessageScope.Local.ReverseTraversalSupplier
-
- rm(String) - Method in interface org.apache.tinkerpop.gremlin.structure.io.Storage
-
Recursively remove the data source at the specified location.
- rollback() - Method in interface org.apache.tinkerpop.gremlin.structure.Transaction
-
Rolls back a transaction.
- RoundRobin() - Constructor for class org.apache.tinkerpop.gremlin.driver.LoadBalancingStrategy.RoundRobin
-
- sack() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- sack(BiFunction<V, U, V>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- sack(BiFunction<V, U, V>, String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- sack() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traverser
-
Get the sack local sack object of this traverser.
- sack(S) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traverser
-
Set the traversers sack object to the provided value ("sack the value").
- SackFunctions - Class in org.apache.tinkerpop.gremlin.process.traversal
-
- SackFunctions.Barrier - Enum in org.apache.tinkerpop.gremlin.process.traversal
-
- sample(int) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- sample(Scope, int) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- Scope - Enum in org.apache.tinkerpop.gremlin.process.traversal
-
Many
Step
instance can have a variable scope.
- select(RequestMessage) - Method in class org.apache.tinkerpop.gremlin.driver.LoadBalancingStrategy.RoundRobin
-
- select(RequestMessage) - Method in interface org.apache.tinkerpop.gremlin.driver.LoadBalancingStrategy
-
Provide an ordered list of hosts to send the the given RequestMessage
to.
- select(Column) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- select(Pop, String, String, String...) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
Map the
Traverser
to a
Map
projection of sideEffect values, map values, and/or path values.
- select(String, String, String...) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
Map the
Traverser
to a
Map
projection of sideEffect values, map values, and/or path values.
- select(Pop, String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- select(String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- sendMessage(MessageScope, M) - Method in interface org.apache.tinkerpop.gremlin.process.computer.Messenger
-
The currently executing vertex can send a message with provided
MessageScope
.
- serializer(String) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
- serializer(Serializers) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
- serializer(MessageSerializer) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
- serializeRequestAsBinary(RequestMessage, ByteBufAllocator) - Method in interface org.apache.tinkerpop.gremlin.driver.MessageSerializer
-
Serialize a ResponseMessage
to a Netty ByteBuf
.
- serializeResponseAsBinary(ResponseMessage, ByteBufAllocator) - Method in interface org.apache.tinkerpop.gremlin.driver.MessageSerializer
-
Serialize a ResponseMessage
to a Netty ByteBuf
.
- sessionId(String) - Method in class org.apache.tinkerpop.gremlin.driver.Client.SessionSettings.Builder
-
Provides the identifier of the session.
- set(String, Object) - Method in interface org.apache.tinkerpop.gremlin.process.computer.Memory
-
- set(String, Object) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects
-
Set the specified key to the specified value.
- set(T) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traverser.Admin
-
Set the current object location of the traverser.
- set(String, Object) - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Variables
-
Sets a variable.
- setBulk(long) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traverser.Admin
-
Set the number of traversers represented by this traverser.
- setEdgeFilter(Traversal<Vertex, Edge>) - Method in class org.apache.tinkerpop.gremlin.process.computer.GraphFilter
-
- setGraph(Graph) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal.Admin
-
- setId(String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Step
-
Get the unique id of the step.
- setIteration(int) - Method in interface org.apache.tinkerpop.gremlin.process.computer.Memory.Admin
-
- setNextStep(Step<E, ?>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Step
-
Set the step that is next to the current step.
- setParent(TraversalParent) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal.Admin
-
Set the
TraversalParent
Step
that is the parent of this traversal.
- setPreviousStep(Step<?, S>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Step
-
Set the step that is previous to the current step.
- setRuntime(long) - Method in interface org.apache.tinkerpop.gremlin.process.computer.Memory.Admin
-
- setSack(Supplier<S>, UnaryOperator<S>, BinaryOperator<S>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects
-
Set the initial value of each
Traverser
"sack" along with the operators for splitting and merging sacks.
- setSideEffects(TraversalSideEffects) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal.Admin
-
- setSideEffects(TraversalSideEffects) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traverser.Admin
-
- setStepId(String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traverser.Admin
-
Set the step id of where the traverser is located.
- setStrategies(TraversalStrategies) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal.Admin
-
- settings - Variable in class org.apache.tinkerpop.gremlin.driver.Client
-
- setTraversal(Traversal.Admin<?, ?>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Step
-
Set the
Traversal
that this step is contained within.
- setup(Memory) - Method in class org.apache.tinkerpop.gremlin.process.computer.clustering.peerpressure.PeerPressureVertexProgram
-
- setup(Memory) - Method in class org.apache.tinkerpop.gremlin.process.computer.ranking.pagerank.PageRankVertexProgram
-
- setup(Memory) - Method in class org.apache.tinkerpop.gremlin.process.computer.traversal.TraversalVertexProgram
-
- setup(Memory) - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram
-
The method is called at the beginning of the computation.
- setValue(V) - Method in class org.apache.tinkerpop.gremlin.process.traversal.P
-
- setVertexFilter(Traversal<Vertex, Vertex>) - Method in class org.apache.tinkerpop.gremlin.process.computer.GraphFilter
-
- sideEffect(Consumer<Traverser<E>>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- sideEffect(Traversal<?, ?>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- sideEffectKeyCanNotBeEmpty() - Static method in class org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects.Exceptions
-
- sideEffectKeyCanNotBeNull() - Static method in class org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects.Exceptions
-
- sideEffectKeyDoesNotExist(String) - Static method in class org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects.Exceptions
-
- sideEffects(String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traverser
-
Get a particular value from the side-effects of the traverser (thus, traversal).
- sideEffects(String, Object) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traverser
-
Add a particular value to the respective side-effect of the traverser (thus, traversal).
- sideEffectValueCanNotBeNull() - Static method in class org.apache.tinkerpop.gremlin.process.traversal.TraversalSideEffects.Exceptions
-
- simplePath() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- size() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Path
-
Get the number of step in the path.
- some(int) - Method in class org.apache.tinkerpop.gremlin.driver.ResultSet
-
The returned
CompletableFuture
completes when the number of items specified are available.
- sortStrategies(List<TraversalStrategy<?>>) - Static method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategies
-
- split(R, Step<T, R>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traverser.Admin
-
Generate a child traverser of the current traverser for current as step and new object location.
- split() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traverser.Admin
-
Generate a sibling traverser of the current traverser with a full copy of all state within the sibling.
- Step<S,E> - Interface in org.apache.tinkerpop.gremlin.process.traversal
-
- stepWithProvidedLabelDoesNotExist(String) - Static method in class org.apache.tinkerpop.gremlin.process.traversal.Path.Exceptions
-
- Storage - Interface in org.apache.tinkerpop.gremlin.structure.io
-
Storage is a standard API that providers can implement to allow "file-system"-based access to data sources.
- store(String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- storeState(Configuration) - Method in class org.apache.tinkerpop.gremlin.process.computer.clustering.peerpressure.PeerPressureVertexProgram
-
- storeState(Configuration) - Method in interface org.apache.tinkerpop.gremlin.process.computer.MapReduce
-
When it is necessary to store the state of a MapReduce job, this method is called.
- storeState(Configuration) - Method in class org.apache.tinkerpop.gremlin.process.computer.ranking.pagerank.PageRankVertexProgram
-
- storeState(Configuration) - Method in class org.apache.tinkerpop.gremlin.process.computer.traversal.TraversalVertexProgram
-
- storeState(Configuration) - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram
-
When it is necessary to store the state of the VertexProgram, this method is called.
- STRATEGY_CATEGORIES - Static variable in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategies
-
- stream() - Method in class org.apache.tinkerpop.gremlin.driver.ResultSet
-
Stream items with a blocking iterator.
- stream() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Path
-
- strict(boolean) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLReader.Builder
-
When set to true, exceptions will be thrown if a property value cannot be coerced to the expected data
type.
- sub - Variable in class org.apache.tinkerpop.gremlin.process.traversal.NumberHelper
-
- sub(Number, Number) - Static method in class org.apache.tinkerpop.gremlin.process.traversal.NumberHelper
-
- subgraph(String) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- submit(String, String) - Method in class org.apache.tinkerpop.gremlin.driver.Client.ClusteredClient
-
Submits a Gremlin script to the server and returns a
ResultSet
once the write of the request is
complete.
- submit(String, String, Map<String, Object>) - Method in class org.apache.tinkerpop.gremlin.driver.Client.ClusteredClient
-
Submits a Gremlin script and bound parameters to the server and returns a
ResultSet
once the write of
the request is complete.
- submit(Traversal) - Method in class org.apache.tinkerpop.gremlin.driver.Client
-
Submit a
Traversal
to the server for remote execution.
- submit(String) - Method in class org.apache.tinkerpop.gremlin.driver.Client
-
Submits a Gremlin script to the server and returns a
ResultSet
once the write of the request is
complete.
- submit(String, Map<String, Object>) - Method in class org.apache.tinkerpop.gremlin.driver.Client
-
Submits a Gremlin script and bound parameters to the server and returns a
ResultSet
once the write of
the request is complete.
- submit() - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer
-
- submit(Function<Graph, R>) - Method in interface org.apache.tinkerpop.gremlin.structure.Transaction
-
Submit a unit of work that represents a transaction returning a
Transaction.Workload
that can be automatically
retried in the event of failure.
- submitAsync(String, String, Map<String, Object>) - Method in class org.apache.tinkerpop.gremlin.driver.Client.ClusteredClient
-
The asynchronous version of
Client.submit(String, Map)
} where the returned future will complete when the
write of the request completes.
- submitAsync(String, Map<String, String>, Map<String, Object>) - Method in class org.apache.tinkerpop.gremlin.driver.Client.ClusteredClient
-
The asynchronous version of
Client.submit(String, Map)
} where the returned future will complete when the
write of the request completes.
- submitAsync(Traversal) - Method in class org.apache.tinkerpop.gremlin.driver.Client.ReboundClusteredClient
-
Deprecated.
- submitAsync(Traversal) - Method in class org.apache.tinkerpop.gremlin.driver.Client
-
- submitAsync(String) - Method in class org.apache.tinkerpop.gremlin.driver.Client
-
The asynchronous version of
Client.submit(String)
where the returned future will complete when the
write of the request completes.
- submitAsync(String, Map<String, Object>) - Method in class org.apache.tinkerpop.gremlin.driver.Client
-
The asynchronous version of
Client.submit(String, Map)
} where the returned future will complete when the
write of the request completes.
- submitAsync(String, String, Map<String, Object>) - Method in class org.apache.tinkerpop.gremlin.driver.Client
-
The asynchronous version of
Client.submit(String, Map)
} where the returned future will complete when the
write of the request completes.
- submitAsync(String, Map<String, String>, Map<String, Object>) - Method in class org.apache.tinkerpop.gremlin.driver.Client
-
The asynchronous version of
Client.submit(String, Map)
} where the returned future will complete when the
write of the request completes.
- submitAsync(RequestMessage) - Method in class org.apache.tinkerpop.gremlin.driver.Client
-
A low-level method that allows the submission of a manually constructed RequestMessage
.
- SUITE_GROOVY_ENVIRONMENT - Static variable in annotation type org.apache.tinkerpop.gremlin.structure.Graph.OptIn
-
- SUITE_GROOVY_ENVIRONMENT_INTEGRATE - Static variable in annotation type org.apache.tinkerpop.gremlin.structure.Graph.OptIn
-
- SUITE_GROOVY_ENVIRONMENT_PERFORMANCE - Static variable in annotation type org.apache.tinkerpop.gremlin.structure.Graph.OptIn
-
- SUITE_GROOVY_PROCESS_COMPUTER - Static variable in annotation type org.apache.tinkerpop.gremlin.structure.Graph.OptIn
-
- SUITE_GROOVY_PROCESS_STANDARD - Static variable in annotation type org.apache.tinkerpop.gremlin.structure.Graph.OptIn
-
- SUITE_PROCESS_COMPUTER - Static variable in annotation type org.apache.tinkerpop.gremlin.structure.Graph.OptIn
-
- SUITE_PROCESS_PERFORMANCE - Static variable in annotation type org.apache.tinkerpop.gremlin.structure.Graph.OptIn
-
- SUITE_PROCESS_STANDARD - Static variable in annotation type org.apache.tinkerpop.gremlin.structure.Graph.OptIn
-
- SUITE_STRUCTURE_INTEGRATE - Static variable in annotation type org.apache.tinkerpop.gremlin.structure.Graph.OptIn
-
- SUITE_STRUCTURE_PERFORMANCE - Static variable in annotation type org.apache.tinkerpop.gremlin.structure.Graph.OptIn
-
- SUITE_STRUCTURE_STANDARD - Static variable in annotation type org.apache.tinkerpop.gremlin.structure.Graph.OptIn
-
- sum() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- sum(Scope) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- supports(Class<? extends Graph.Features.FeatureSet>, String) - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features
-
Implementers should not override this method.
- supportsAddEdges() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.EdgeFeatures
-
Determines if an
Edge
can be added to a
Vertex
.
- supportsAddProperty() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.ElementFeatures
-
Determines if an
Element
allows properties to be added.
- supportsAddProperty() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.VertexPropertyFeatures
-
Deprecated.
- supportsAddVertices() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.VertexFeatures
-
Determines if a
Vertex
can be added to the
Graph
.
- supportsAnyIds() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.ElementFeatures
-
Determines if an
Element
any Java object is a suitable identifier.
- supportsAnyIds() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.VertexPropertyFeatures
-
Determines if an
VertexProperty
any Java object is a suitable identifier.
- supportsBooleanArrayValues() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.DataTypeFeatures
-
Supports setting of an array of boolean values.
- supportsBooleanValues() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.DataTypeFeatures
-
Supports setting of a boolean value.
- supportsByteArrayValues() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.DataTypeFeatures
-
Supports setting of an array of byte values.
- supportsByteValues() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.DataTypeFeatures
-
Supports setting of a byte value.
- supportsComputer() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.GraphFeatures
-
Determines if the
Graph
implementation supports
GraphComputer
based processing.
- supportsConcurrentAccess() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.GraphFeatures
-
Determines if the Graph
implementation supports more than one connection to the same instance
at the same time.
- supportsCustomIds() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.ElementFeatures
-
Determines if an
Element
has a specific custom object as their internal representation.
- supportsCustomIds() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.VertexPropertyFeatures
-
Determines if an
VertexProperty
has a specific custom object as their internal representation.
- supportsDirectObjects() - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Features
-
Supports
VertexProgram
and
MapReduce
parameters to be direct referenced Java objects (no serialization required).
- supportsDoubleArrayValues() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.DataTypeFeatures
-
Supports setting of an array of double values.
- supportsDoubleValues() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.DataTypeFeatures
-
Supports setting of a double value.
- supportsEdgeAddition() - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Features
-
- supportsEdgePropertyAddition() - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Features
-
- supportsEdgePropertyRemoval() - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Features
-
- supportsEdgeRemoval() - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Features
-
- supportsFloatArrayValues() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.DataTypeFeatures
-
Supports setting of an array of float values.
- supportsFloatValues() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.DataTypeFeatures
-
Supports setting of a float value.
- supportsGlobalMessageScopes() - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Features
-
- supportsGraphFilter() - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Features
-
- supportsIntegerArrayValues() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.DataTypeFeatures
-
Supports setting of an array of integer values.
- supportsIntegerValues() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.DataTypeFeatures
-
Supports setting of a integer value.
- supportsLocalMessageScopes() - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Features
-
- supportsLongArrayValues() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.DataTypeFeatures
-
Supports setting of an array of long values.
- supportsLongValues() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.DataTypeFeatures
-
Supports setting of a long value.
- supportsMapValues() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.DataTypeFeatures
-
Supports setting of a Map
value.
- supportsMetaProperties() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.VertexFeatures
-
Determines if a
Vertex
can support properties on vertex properties.
- supportsMixedListValues() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.DataTypeFeatures
-
Supports setting of a List
value.
- supportsMultiProperties() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.VertexFeatures
-
Determines if a
Vertex
can support multiple properties with the same key.
- supportsNumericIds() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.ElementFeatures
-
Determines if an
Element
has numeric identifiers as their internal representation.
- supportsNumericIds() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.VertexPropertyFeatures
-
Determines if an
VertexProperty
has numeric identifiers as their internal representation.
- supportsPersistence() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.GraphFeatures
-
Determines if the Graph
implementation supports persisting it's contents natively to disk.
- supportsProperties() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.PropertyFeatures
-
Determines if an
Element
allows for the processing of at least one data type defined by the
features.
- supportsRemoveEdges() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.EdgeFeatures
-
Determines if an
Edge
can be removed from a
Vertex
.
- supportsRemoveProperty() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.ElementFeatures
-
Determines if an
Element
allows properties to be removed.
- supportsRemoveProperty() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.VertexPropertyFeatures
-
- supportsRemoveVertices() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.VertexFeatures
-
Determines if a
Vertex
can be removed from the
Graph
.
- supportsResultGraphPersistCombination(GraphComputer.ResultGraph, GraphComputer.Persist) - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Features
-
- supportsSerializableValues() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.DataTypeFeatures
-
Supports setting of a Java serializable value.
- supportsSsl() - Method in class org.apache.tinkerpop.gremlin.driver.Channelizer.AbstractChannelizer
-
- supportsSsl() - Method in class org.apache.tinkerpop.gremlin.driver.Channelizer.WebSocketChannelizer
-
- supportsStringArrayValues() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.DataTypeFeatures
-
Supports setting of an array of string values.
- supportsStringIds() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.ElementFeatures
-
Determines if an
Element
has string identifiers as their internal representation.
- supportsStringIds() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.VertexPropertyFeatures
-
Determines if an
VertexProperty
has string identifiers as their internal representation.
- supportsStringValues() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.DataTypeFeatures
-
Supports setting of a string value.
- supportsThreadedTransactions() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.GraphFeatures
-
Determines if the
Graph
implementation supports threaded transactions which allow a transaction
to be executed across multiple threads via
Transaction.createThreadedTx()
.
- supportsTransactions() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.GraphFeatures
-
Determines if the Graph
implementations supports transactions.
- supportsUniformListValues() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.DataTypeFeatures
-
Supports setting of a List
value.
- supportsUserSuppliedIds() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.ElementFeatures
-
Determines if an
Element
can have a user defined identifier.
- supportsUserSuppliedIds() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.VertexPropertyFeatures
-
Determines if a
VertexProperty
allows an identifier to be assigned to it.
- supportsUuidIds() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.ElementFeatures
-
Determines if an
Element
has UUID identifiers as their internal representation.
- supportsUuidIds() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.VertexPropertyFeatures
-
Determines if an
VertexProperty
has UUID identifiers as their internal representation.
- supportsVariables() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.VariableFeatures
-
- supportsVertexAddition() - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Features
-
- supportsVertexPropertyAddition() - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Features
-
- supportsVertexPropertyRemoval() - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Features
-
- supportsVertexRemoval() - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Features
-
- V(Object...) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- value() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- value - Variable in class org.apache.tinkerpop.gremlin.process.traversal.P
-
- value(String) - Method in interface org.apache.tinkerpop.gremlin.structure.Element
-
Get the value of a
Property
given it's key.
- value() - Method in interface org.apache.tinkerpop.gremlin.structure.Property
-
The value of the property.
- valueMap(String...) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- valueMap(boolean, String...) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.driver.AuthProperties.Property
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Persist
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.process.computer.GraphComputer.ResultGraph
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.process.computer.GraphFilter.Legal
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.process.computer.MapReduce.Stage
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.process.traversal.Compare
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.process.traversal.Contains
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.process.traversal.Operator
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.process.traversal.Order
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.process.traversal.Pop
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.process.traversal.SackFunctions.Barrier
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.process.traversal.Scope
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.process.traversal.TraversalEngine.Type
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.structure.Column
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.structure.Direction
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.structure.PropertyType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.structure.T
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.structure.Transaction.CLOSE_BEHAVIOR
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.structure.Transaction.READ_WRITE_BEHAVIOR
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.structure.Transaction.Status
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.tinkerpop.gremlin.structure.VertexProperty.Cardinality
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum org.apache.tinkerpop.gremlin.driver.AuthProperties.Property
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Persist
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.tinkerpop.gremlin.process.computer.GraphComputer.ResultGraph
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.tinkerpop.gremlin.process.computer.GraphFilter.Legal
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.tinkerpop.gremlin.process.computer.MapReduce.Stage
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.tinkerpop.gremlin.process.traversal.Compare
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.tinkerpop.gremlin.process.traversal.Contains
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values(String...) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
Map the
Element
to the values of the associated properties given the provide property keys.
- values() - Static method in enum org.apache.tinkerpop.gremlin.process.traversal.Operator
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.tinkerpop.gremlin.process.traversal.Order
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.tinkerpop.gremlin.process.traversal.Pop
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.tinkerpop.gremlin.process.traversal.SackFunctions.Barrier
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.tinkerpop.gremlin.process.traversal.Scope
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.tinkerpop.gremlin.process.traversal.TraversalEngine.Type
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.tinkerpop.gremlin.structure.Column
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.tinkerpop.gremlin.structure.Direction
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values(String...) - Method in interface org.apache.tinkerpop.gremlin.structure.Element
-
Get the values of properties as an
Iterator
.
- values() - Static method in enum org.apache.tinkerpop.gremlin.structure.PropertyType
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.tinkerpop.gremlin.structure.T
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.tinkerpop.gremlin.structure.Transaction.CLOSE_BEHAVIOR
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.tinkerpop.gremlin.structure.Transaction.READ_WRITE_BEHAVIOR
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.tinkerpop.gremlin.structure.Transaction.Status
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.tinkerpop.gremlin.structure.VertexProperty.Cardinality
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- variableKeyCanNotBeEmpty() - Static method in class org.apache.tinkerpop.gremlin.structure.Graph.Variables.Exceptions
-
- variableKeyCanNotBeNull() - Static method in class org.apache.tinkerpop.gremlin.structure.Graph.Variables.Exceptions
-
- variables() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.GraphFeatures
-
Gets the features related to "graph sideEffects" operation.
- variables() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph
-
- variablesNotSupported() - Static method in class org.apache.tinkerpop.gremlin.structure.Graph.Exceptions
-
- variableValueCanNotBeNull() - Static method in class org.apache.tinkerpop.gremlin.structure.Graph.Variables.Exceptions
-
- vertex() - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features
-
Gets the features related to "vertex" operation.
- Vertex - Interface in org.apache.tinkerpop.gremlin.structure
-
A
Vertex
maintains pointers to both a set of incoming and outgoing
Edge
objects.
- Vertex.Exceptions - Class in org.apache.tinkerpop.gremlin.structure
-
Common exceptions to use with a vertex.
- VERTEX_PROGRAM - Static variable in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram
-
- vertexAdditionsNotSupported() - Static method in class org.apache.tinkerpop.gremlin.structure.Graph.Exceptions
-
- VertexComputeKey - Class in org.apache.tinkerpop.gremlin.process.computer
-
A
VertexComputeKey
specifies a property of a vertex that will be used to store
GraphComputer
data.
- vertexCount(long) - Method in class org.apache.tinkerpop.gremlin.process.computer.ranking.pagerank.PageRankVertexProgram.Builder
-
- vertexFilterAccessesIncidentEdges(Traversal<Vertex, Vertex>) - Static method in class org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Exceptions
-
- vertexKeyTypes(Map<String, String>) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLWriter.Builder
-
Map of the data types of the vertex keys.
- vertexLabelKey(String) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLReader.Builder
-
the key to use as the vertex label.
- vertexLabelKey(String) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLWriter.Builder
-
Set the name of the vertex label in the GraphML.
- VertexProgram<M> - Interface in org.apache.tinkerpop.gremlin.process.computer
-
A
VertexProgram
represents one component of a distributed graph computation.
- VertexProgram.Builder - Interface in org.apache.tinkerpop.gremlin.process.computer
-
- VertexProgram.Features - Interface in org.apache.tinkerpop.gremlin.process.computer
-
- vertexPropertiesCanNotBeUpdatedInMapReduce() - Static method in class org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Exceptions
-
- VertexProperty<V> - Interface in org.apache.tinkerpop.gremlin.structure
-
A
VertexProperty
is similar to a
Property
in that it denotes a key/value pair associated with an
Vertex
, however it is different in the sense that it also represents an entity that it is an
Element
that can have properties of its own.
- VertexProperty.Cardinality - Enum in org.apache.tinkerpop.gremlin.structure
-
- VertexProperty.Exceptions - Class in org.apache.tinkerpop.gremlin.structure
-
Common exceptions to use with a property.
- vertexRemovalNotSupported() - Static method in class org.apache.tinkerpop.gremlin.structure.Vertex.Exceptions
-
- vertexWithIdAlreadyExists(Object) - Static method in class org.apache.tinkerpop.gremlin.structure.Graph.Exceptions
-
- vertices(Traversal<Vertex, Vertex>) - Method in class org.apache.tinkerpop.gremlin.process.computer.Computer
-
- vertices(Traversal<Vertex, Vertex>) - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer
-
Add a filter that will limit which vertices are loaded from the graph source.
- vertices() - Method in class org.apache.tinkerpop.gremlin.process.computer.MessageScope.Global
-
- vertices(Direction) - Method in interface org.apache.tinkerpop.gremlin.structure.Edge
-
Retrieve the vertex (or vertices) associated with this edge as defined by the direction.
- vertices(Object...) - Method in interface org.apache.tinkerpop.gremlin.structure.Graph
-
Get the
Vertex
objects in this graph with the provided vertex ids.
- vertices(Direction, String...) - Method in interface org.apache.tinkerpop.gremlin.structure.Vertex
-
- visit(Map<Class<? extends TraversalStrategy>, Set<Class<? extends TraversalStrategy>>>, List<Class<? extends TraversalStrategy>>, Set<Class<? extends TraversalStrategy>>, List<Class<? extends TraversalStrategy>>, Class<? extends TraversalStrategy>) - Static method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategies
-
- WebSocketChannelizer() - Constructor for class org.apache.tinkerpop.gremlin.driver.Channelizer.WebSocketChannelizer
-
- where(String, P<String>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- where(P<String>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- where(Traversal<?, ?>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
-
- willAllowId(Object) - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.ElementFeatures
-
Determines if an identifier will be accepted by the
Graph
.
- willAllowId(Object) - Method in interface org.apache.tinkerpop.gremlin.structure.Graph.Features.VertexPropertyFeatures
-
Determines if an identifier will be accepted by the
Graph
.
- with(AuthProperties.Property, String) - Method in class org.apache.tinkerpop.gremlin.driver.AuthProperties
-
- with(TraversalStrategy) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource.Builder
-
- withComputer(Computer) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
- withComputer(Class<? extends GraphComputer>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
- withComputer() - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
Add the standard
GraphComputer
of the graph that will be used to execute the traversal.
- within(V...) - Static method in class org.apache.tinkerpop.gremlin.process.traversal.P
-
- within(Collection<V>) - Static method in class org.apache.tinkerpop.gremlin.process.traversal.P
-
- without(V...) - Static method in class org.apache.tinkerpop.gremlin.process.traversal.P
-
- without(Collection<V>) - Static method in class org.apache.tinkerpop.gremlin.process.traversal.P
-
- without(Class<? extends TraversalStrategy>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource.Builder
-
- withoutStrategies(Class<? extends TraversalStrategy>...) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
Remove an arbitrary collection of
TraversalStrategy
classes from the traversal source.
- withSack(Supplier<A>, UnaryOperator<A>, BinaryOperator<A>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
Add a sack to be used throughout the life of a spawned
Traversal
.
- withSack(A, UnaryOperator<A>, BinaryOperator<A>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
Add a sack to be used throughout the life of a spawned
Traversal
.
- withSack(A) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
Add a sack to be used throughout the life of a spawned
Traversal
.
- withSack(Supplier<A>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
Add a sack to be used throughout the life of a spawned
Traversal
.
- withSack(Supplier<A>, UnaryOperator<A>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
Add a sack to be used throughout the life of a spawned
Traversal
.
- withSack(A, UnaryOperator<A>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
Add a sack to be used throughout the life of a spawned
Traversal
.
- withSack(Supplier<A>, BinaryOperator<A>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
Add a sack to be used throughout the life of a spawned
Traversal
.
- withSack(A, BinaryOperator<A>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
Add a sack to be used throughout the life of a spawned
Traversal
.
- withSideEffect(String, Supplier<A>, BinaryOperator<A>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
Add a sideEffect to be used throughout the life of a spawned
Traversal
.
- withSideEffect(String, A, BinaryOperator<A>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
Add a sideEffect to be used throughout the life of a spawned
Traversal
.
- withSideEffect(String, Supplier<A>) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
Add a sideEffect to be used throughout the life of a spawned
Traversal
.
- withSideEffect(String, A) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
Add a sideEffect to be used throughout the life of a spawned
Traversal
.
- withStrategies(TraversalStrategy...) - Method in interface org.apache.tinkerpop.gremlin.process.traversal.TraversalSource
-
- workerEnd(MapReduce.Stage) - Method in interface org.apache.tinkerpop.gremlin.process.computer.MapReduce
-
This method is called at the end of the respective
MapReduce.Stage
for a particular "chunk of vertices."
The set of vertices in the graph are typically not processed with full parallelism.
- workerIterationEnd(Memory) - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram
-
This method is called at the end of each iteration of each "computational chunk."
The set of vertices in the graph are typically not processed with full parallelism.
- workerIterationStart(Memory) - Method in interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram
-
This method is called at the start of each iteration of each "computational chunk."
The set of vertices in the graph are typically not processed with full parallelism.
- workerPoolSize(int) - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
-
Size of the pool for handling background work.
- workers(int) - Method in class org.apache.tinkerpop.gremlin.process.computer.Computer
-
- workers(int) - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer
-
- workerStart(MapReduce.Stage) - Method in interface org.apache.tinkerpop.gremlin.process.computer.MapReduce
-
This method is called at the start of the respective
MapReduce.Stage
for a particular "chunk of vertices."
The set of vertices in the graph are typically not processed with full parallelism.
- Workload(Graph, Function<Graph, R>) - Constructor for class org.apache.tinkerpop.gremlin.structure.Transaction.Workload
-
- wrapAdjacencyList(boolean) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONWriter.Builder
-
- writeEdge(OutputStream, Edge) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLWriter
-
This method is not supported for this writer.
- writeEdge(OutputStream, Edge) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONWriter
-
Writes an
Edge
object to the stream.
- writeEdge(OutputStream, Edge) - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphWriter
-
Write an edge to a stream.
- writeEdge(OutputStream, Edge) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoWriter
-
Write an edge to a stream.
- writeGraph(OutputStream, Graph) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLWriter
-
Write the data in a Graph to a GraphML OutputStream.
- writeGraph(OutputStream, Graph) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONWriter
-
Writes a
Graph
to stream in an adjacency list format where vertices are written with edges from both
directions.
- writeGraph(OutputStream, Graph) - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphWriter
-
Write the entire graph to a stream.
- writeGraph(OutputStream, Graph) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoWriter
-
Write the entire graph to a stream.
- writeGraph(String) - Method in interface org.apache.tinkerpop.gremlin.structure.io.Io
-
- writeObject(OutputStream, Object) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLWriter
-
This method is not supported for this writer.
- writeObject(OutputStream, Object) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONWriter
-
Writes an arbitrary object to the stream.
- writeObject(OutputStream, Object) - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphWriter
-
Writes an arbitrary object to the stream.
- writeObject(OutputStream, Object) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoWriter
-
Writes an arbitrary object to the stream.
- writeProperty(OutputStream, Property) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLWriter
-
This method is not supported for this writer.
- writeProperty(OutputStream, Property) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONWriter
-
- writeProperty(OutputStream, Property) - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphWriter
-
Write a property to a stream.
- writeProperty(OutputStream, Property) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoWriter
-
Write a property to a stream.
- writer() - Method in interface org.apache.tinkerpop.gremlin.structure.io.Io
-
- writerFormatIsForFullGraphSerializationOnly(Class<? extends GraphWriter>) - Static method in class org.apache.tinkerpop.gremlin.structure.io.Io.Exceptions
-
- writeVertex(OutputStream, Vertex, Direction) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLWriter
-
This method is not supported for this writer.
- writeVertex(OutputStream, Vertex) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLWriter
-
This method is not supported for this writer.
- writeVertex(OutputStream, Vertex, Direction) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONWriter
-
Writes a single
Vertex
to stream where edges only from the specified direction are written.
- writeVertex(OutputStream, Vertex) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONWriter
-
Writes a single
Vertex
with no edges serialized.
- writeVertex(OutputStream, Vertex, Direction) - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphWriter
-
Write a vertex to a stream with its associated edges.
- writeVertex(OutputStream, Vertex) - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphWriter
-
Write a vertex to a stream without writing its edges.
- writeVertex(OutputStream, Vertex, Direction) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoWriter
-
Write a vertex to a stream with its associated edges.
- writeVertex(OutputStream, Vertex) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoWriter
-
Write a vertex to a stream without writing its edges.
- writeVertexProperty(OutputStream, VertexProperty) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLWriter
-
This method is not supported for this writer.
- writeVertexProperty(OutputStream, VertexProperty) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONWriter
-
- writeVertexProperty(OutputStream, VertexProperty) - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphWriter
-
Write a vertex property to a stream.
- writeVertexProperty(OutputStream, VertexProperty) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoWriter
-
Write a vertex property to a stream.
- writeVertices(OutputStream, Iterator<Vertex>, Direction) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLWriter
-
This method is not supported for this writer.
- writeVertices(OutputStream, Iterator<Vertex>) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLWriter
-
This method is not supported for this writer.
- writeVertices(OutputStream, Iterator<Vertex>, Direction) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONWriter
-
Writes a list of vertices in adjacency list format where vertices are written with edges from both
directions.
- writeVertices(OutputStream, Iterator<Vertex>) - Method in class org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONWriter
-
Writes a list of vertices without edges.
- writeVertices(OutputStream, Iterator<Vertex>, Direction) - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphWriter
-
Write a list of vertices from a
Traversal
to a stream with its associated edges.
- writeVertices(OutputStream, Iterator<Vertex>) - Method in interface org.apache.tinkerpop.gremlin.structure.io.GraphWriter
-
Write a vertex to a stream without writing its edges.
- writeVertices(OutputStream, Iterator<Vertex>, Direction) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoWriter
-
Write a list of vertices from a
Traversal
to a stream with its associated edges.
- writeVertices(OutputStream, Iterator<Vertex>) - Method in class org.apache.tinkerpop.gremlin.structure.io.gryo.GryoWriter
-
Write a vertex to a stream without writing its edges.