Uses of Interface
org.apache.tinkerpop.gremlin.structure.Edge
-
-
Uses of Edge in org.apache.tinkerpop.gremlin
Methods in org.apache.tinkerpop.gremlin that return Edge Modifier and Type Method Description Edge
AbstractGremlinTest. convertToEdge(String outVertexName, String edgeLabel, String inVertexName)
Edge
AbstractGremlinTest. convertToEdge(Graph graph, String outVertexName, String edgeLabel, String inVertexName)
Methods in org.apache.tinkerpop.gremlin with parameters of type Edge Modifier and Type Method Description static void
TestHelper. validateEdgeEquality(Edge originalEdge, Edge otherEdge)
-
Uses of Edge in org.apache.tinkerpop.gremlin.algorithm.generator
Fields in org.apache.tinkerpop.gremlin.algorithm.generator with type parameters of type Edge Modifier and Type Field Description protected Optional<Consumer<Edge>>
AbstractGenerator.AbstractGeneratorBuilder. edgeProcessor
Methods in org.apache.tinkerpop.gremlin.algorithm.generator that return Edge Modifier and Type Method Description protected Edge
AbstractGenerator. addEdge(Vertex out, Vertex in)
Method parameters in org.apache.tinkerpop.gremlin.algorithm.generator with type arguments of type Edge Modifier and Type Method Description T
AbstractGenerator.AbstractGeneratorBuilder. edgeProcessor(Consumer<Edge> edgeProcessor)
-
Uses of Edge in org.apache.tinkerpop.gremlin.driver
Methods in org.apache.tinkerpop.gremlin.driver that return Edge Modifier and Type Method Description Edge
Result. getEdge()
Gets the result item by casting it to anEdge
. -
Uses of Edge in org.apache.tinkerpop.gremlin.groovy.jsr223.dsl.credential
Methods in org.apache.tinkerpop.gremlin.groovy.jsr223.dsl.credential that return types with arguments of type Edge Modifier and Type Method Description static <A> CredentialTraversal<A,Edge>
__. addE(String edgeLabel)
static <A> CredentialTraversal<A,Edge>
__. addE(Traversal<?,String> edgeLabelTraversal)
default CredentialTraversal<S,Edge>
CredentialTraversal. addE(String edgeLabel)
default CredentialTraversal<S,Edge>
CredentialTraversal. addE(Traversal<?,String> edgeLabelTraversal)
CredentialTraversal<Edge,Edge>
CredentialTraversalSource. addE(String label)
CredentialTraversal<Edge,Edge>
CredentialTraversalSource. addE(String label)
CredentialTraversal<Edge,Edge>
CredentialTraversalSource. addE(Traversal edgeLabelTraversal)
CredentialTraversal<Edge,Edge>
CredentialTraversalSource. addE(Traversal edgeLabelTraversal)
static CredentialTraversal<Vertex,Edge>
__. bothE(String... edgeLabels)
default CredentialTraversal<S,Edge>
CredentialTraversal. bothE(String... edgeLabels)
static CredentialTraversal<Edge,Vertex>
__. bothV()
CredentialTraversal<Edge,Edge>
CredentialTraversalSource. E(Object... edgeIds)
CredentialTraversal<Edge,Edge>
CredentialTraversalSource. E(Object... edgeIds)
static CredentialTraversal<Vertex,Edge>
__. inE(String... edgeLabels)
default CredentialTraversal<S,Edge>
CredentialTraversal. inE(String... edgeLabels)
static CredentialTraversal<Edge,Vertex>
__. inV()
static <A> CredentialTraversal<A,Edge>
__. mergeE()
static <A> CredentialTraversal<A,Edge>
__. mergeE(Map<Object,Object> searchCreate)
static <A> CredentialTraversal<A,Edge>
__. mergeE(Traversal<?,Map<Object,Object>> searchCreate)
default CredentialTraversal<S,Edge>
CredentialTraversal. mergeE()
default CredentialTraversal<S,Edge>
CredentialTraversal. mergeE(Map<Object,Object> searchCreate)
default CredentialTraversal<S,Edge>
CredentialTraversal. mergeE(Traversal<?,Map<Object,Object>> searchCreate)
static CredentialTraversal<Edge,Vertex>
__. otherV()
static CredentialTraversal<Vertex,Edge>
__. outE(String... edgeLabels)
default CredentialTraversal<S,Edge>
CredentialTraversal. outE(String... edgeLabels)
static CredentialTraversal<Edge,Vertex>
__. outV()
static <A> CredentialTraversal<A,Edge>
__. subgraph(String sideEffectKey)
default CredentialTraversal<S,Edge>
CredentialTraversal. subgraph(String sideEffectKey)
static CredentialTraversal<Vertex,Edge>
__. toE(Direction direction, String... edgeLabels)
default CredentialTraversal<S,Edge>
CredentialTraversal. toE(Direction direction, String... edgeLabels)
static CredentialTraversal<Edge,Vertex>
__. toV(Direction direction)
-
Uses of Edge in org.apache.tinkerpop.gremlin.process.computer
Fields in org.apache.tinkerpop.gremlin.process.computer with type parameters of type Edge Modifier and Type Field Description BiFunction<M,Edge,M>
MessageScope.Local. edgeFunction
Supplier<? extends Traversal<Vertex,Edge>>
MessageScope.Local. incidentTraversal
Methods in org.apache.tinkerpop.gremlin.process.computer that return types with arguments of type Edge Modifier and Type Method Description Traversal<Vertex,Edge>
MessageScope.Local.ReverseTraversalSupplier. get()
Traversal.Admin<Vertex,Edge>
GraphFilter. getEdgeFilter()
Get the edge filter associated with this graph filter.BiFunction<M,Edge,M>
MessageScope.Local. getEdgeFunction()
Traversal<Vertex,Edge>
Computer. getEdges()
Supplier<? extends Traversal<Vertex,Edge>>
MessageScope.Local. getIncidentTraversal()
Iterator<Edge>
GraphFilter. legalEdges(Vertex vertex)
Returns an iterator of legal edges incident to the provided vertex.Method parameters in org.apache.tinkerpop.gremlin.process.computer with type arguments of type Edge Modifier and Type Method Description static IllegalArgumentException
GraphComputer.Exceptions. edgeFilterAccessesAdjacentVertices(Traversal<Vertex,Edge> edgeFilter)
Computer
Computer. edges(Traversal<Vertex,Edge> edgeFilter)
GraphComputer
GraphComputer. edges(Traversal<Vertex,Edge> edgeFilter)
Add a filter that will limit which edges of the vertices are loaded from the graph source.GraphComputer
GraphComputerTest.BadGraphComputer. edges(Traversal<Vertex,Edge> edgeFilter)
static <M> MessageScope.Local<M>
MessageScope.Local. of(Supplier<? extends Traversal<Vertex,Edge>> incidentTraversal)
static <M> MessageScope.Local<M>
MessageScope.Local. of(Supplier<? extends Traversal<Vertex,Edge>> incidentTraversal, BiFunction<M,Edge,M> edgeFunction)
static <M> MessageScope.Local<M>
MessageScope.Local. of(Supplier<? extends Traversal<Vertex,Edge>> incidentTraversal, BiFunction<M,Edge,M> edgeFunction)
void
GraphFilter. setEdgeFilter(Traversal<Vertex,Edge> edgeFilter)
Set the filter for selecting edges from the source graph. -
Uses of Edge in org.apache.tinkerpop.gremlin.process.computer.clustering.connected
Method parameters in org.apache.tinkerpop.gremlin.process.computer.clustering.connected with type arguments of type Edge Modifier and Type Method Description ConnectedComponentVertexProgram.Builder
ConnectedComponentVertexProgram.Builder. edges(Traversal.Admin<Vertex,Edge> edgeTraversal)
-
Uses of Edge in org.apache.tinkerpop.gremlin.process.computer.clustering.peerpressure
Method parameters in org.apache.tinkerpop.gremlin.process.computer.clustering.peerpressure with type arguments of type Edge Modifier and Type Method Description PeerPressureVertexProgram.Builder
PeerPressureVertexProgram.Builder. edges(Traversal.Admin<Vertex,Edge> edgeTraversal)
-
Uses of Edge in org.apache.tinkerpop.gremlin.process.computer.ranking.pagerank
Method parameters in org.apache.tinkerpop.gremlin.process.computer.ranking.pagerank with type arguments of type Edge Modifier and Type Method Description PageRankVertexProgram.Builder
PageRankVertexProgram.Builder. edges(Traversal.Admin<Vertex,Edge> edgeTraversal)
-
Uses of Edge in org.apache.tinkerpop.gremlin.process.computer.search.path
Fields in org.apache.tinkerpop.gremlin.process.computer.search.path with type parameters of type Edge Modifier and Type Field Description static PureTraversal<Edge,Number>
ShortestPathVertexProgram. DEFAULT_DISTANCE_TRAVERSAL
static PureTraversal<Vertex,Edge>
ShortestPathVertexProgram. DEFAULT_EDGE_TRAVERSAL
Methods in org.apache.tinkerpop.gremlin.process.computer.search.path that return types with arguments of type Edge Modifier and Type Method Description VertexProgram<org.javatuples.Triplet<Path,Edge,Number>>
ShortestPathVertexProgram. clone()
Method parameters in org.apache.tinkerpop.gremlin.process.computer.search.path with type arguments of type Edge Modifier and Type Method Description ShortestPathVertexProgram.Builder
ShortestPathVertexProgram.Builder. distanceTraversal(Traversal<Edge,Number> distanceTraversal)
ShortestPathVertexProgram.Builder
ShortestPathVertexProgram.Builder. edgeTraversal(Traversal<Vertex,Edge> edgeTraversal)
void
ShortestPathVertexProgram. execute(Vertex vertex, Messenger<org.javatuples.Triplet<Path,Edge,Number>> messenger, Memory memory)
-
Uses of Edge in org.apache.tinkerpop.gremlin.process.computer.traversal.step.map
Methods in org.apache.tinkerpop.gremlin.process.computer.traversal.step.map that return types with arguments of type Edge Modifier and Type Method Description List<Traversal.Admin<Vertex,Edge>>
PageRankVertexProgramStep. getLocalChildren()
List<Traversal.Admin<Vertex,Edge>>
PeerPressureVertexProgramStep. getLocalChildren()
-
Uses of Edge in org.apache.tinkerpop.gremlin.process.computer.traversal.strategy.decoration
Method parameters in org.apache.tinkerpop.gremlin.process.computer.traversal.strategy.decoration with type arguments of type Edge Modifier and Type Method Description VertexProgramStrategy.Builder
VertexProgramStrategy.Builder. edges(Traversal<Vertex,Edge> edges)
-
Uses of Edge in org.apache.tinkerpop.gremlin.process.computer.traversal.strategy.optimization
Methods in org.apache.tinkerpop.gremlin.process.computer.traversal.strategy.optimization that return types with arguments of type Edge Modifier and Type Method Description protected static Traversal.Admin<Vertex,Edge>
GraphFilterStrategy. getEdgeFilter(Traversal.Admin<?,?> traversal)
-
Uses of Edge in org.apache.tinkerpop.gremlin.process.computer.util
Classes in org.apache.tinkerpop.gremlin.process.computer.util that implement Edge Modifier and Type Class Description class
ComputerGraph.ComputerEdge
Methods in org.apache.tinkerpop.gremlin.process.computer.util that return Edge Modifier and Type Method Description Edge
ComputerGraph.ComputerAdjacentVertex. addEdge(String label, Vertex inVertex, Object... keyValues)
Edge
ComputerGraph.ComputerVertex. addEdge(String label, Vertex inVertex, Object... keyValues)
Edge
ComputerGraph.ComputerEdge. getBaseEdge()
Methods in org.apache.tinkerpop.gremlin.process.computer.util that return types with arguments of type Edge Modifier and Type Method Description Iterator<Edge>
ComputerGraph.ComputerAdjacentVertex. edges(Direction direction, String... edgeLabels)
Iterator<Edge>
ComputerGraph.ComputerVertex. edges(Direction direction, String... edgeLabels)
Iterator<Edge>
ComputerGraph. edges(Object... edgeIds)
Constructors in org.apache.tinkerpop.gremlin.process.computer.util with parameters of type Edge Constructor Description ComputerEdge(Edge edge)
-
Uses of Edge in org.apache.tinkerpop.gremlin.process.traversal
Methods in org.apache.tinkerpop.gremlin.process.traversal with parameters of type Edge Modifier and Type Method Description protected abstract Script
Translator.ScriptTranslator.AbstractTypeTranslator. produceScript(Edge o)
Take theEdge
and writes the syntax directly to the memberTranslator.ScriptTranslator.AbstractTypeTranslator.script
variable. -
Uses of Edge in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph
Methods in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph that return types with arguments of type Edge Modifier and Type Method Description static <A> GraphTraversal<A,Edge>
__. addE(String edgeLabel)
static <A> GraphTraversal<A,Edge>
__. addE(Traversal<?,String> edgeLabelTraversal)
default GraphTraversal<S,Edge>
GraphTraversal. addE(String edgeLabel)
Adds anEdge
with the specified edge label.default GraphTraversal<S,Edge>
GraphTraversal. addE(Traversal<?,String> edgeLabelTraversal)
GraphTraversal<Edge,Edge>
GraphTraversalSource. addE(String label)
Spawns aGraphTraversal
by adding an edge with the specified label.GraphTraversal<Edge,Edge>
GraphTraversalSource. addE(String label)
Spawns aGraphTraversal
by adding an edge with the specified label.GraphTraversal<Edge,Edge>
GraphTraversalSource. addE(Traversal<?,String> edgeLabelTraversal)
Spawns aGraphTraversal
by adding a edge with a label as specified by the providedTraversal
.GraphTraversal<Edge,Edge>
GraphTraversalSource. addE(Traversal<?,String> edgeLabelTraversal)
Spawns aGraphTraversal
by adding a edge with a label as specified by the providedTraversal
.static GraphTraversal<Vertex,Edge>
__. bothE(String... edgeLabels)
default GraphTraversal<S,Edge>
GraphTraversal. bothE(String... edgeLabels)
Map theVertex
to its incident edges given the edge labels.static GraphTraversal<Edge,Vertex>
__. bothV()
GraphTraversal<Edge,Edge>
GraphTraversalSource. E(Object... edgeIds)
Spawns aGraphTraversal
starting with all edges or some subset of edges as specified by their unique identifier.GraphTraversal<Edge,Edge>
GraphTraversalSource. E(Object... edgeIds)
Spawns aGraphTraversal
starting with all edges or some subset of edges as specified by their unique identifier.static GraphTraversal<Vertex,Edge>
__. inE(String... edgeLabels)
default GraphTraversal<S,Edge>
GraphTraversal. inE(String... edgeLabels)
Map theVertex
to its incoming incident edges given the edge labels.static GraphTraversal<Edge,Vertex>
__. inV()
static <A> GraphTraversal<A,Edge>
__. mergeE()
static <A> GraphTraversal<A,Edge>
__. mergeE(Map<Object,Object> searchCreate)
static <A> GraphTraversal<A,Edge>
__. mergeE(Traversal<?,Map<Object,Object>> searchCreate)
default GraphTraversal<S,Edge>
GraphTraversal. mergeE()
Spawns aGraphTraversal
by doing a merge (i.e.default GraphTraversal<S,Edge>
GraphTraversal. mergeE(Map<Object,Object> searchCreate)
Spawns aGraphTraversal
by doing a merge (i.e.default GraphTraversal<S,Edge>
GraphTraversal. mergeE(Traversal<?,Map<Object,Object>> searchCreate)
Spawns aGraphTraversal
by doing a merge (i.e.GraphTraversal<Edge,Edge>
GraphTraversalSource. mergeE(Map<?,Object> searchCreate)
Spawns aGraphTraversal
by doing a merge (i.e.GraphTraversal<Edge,Edge>
GraphTraversalSource. mergeE(Map<?,Object> searchCreate)
Spawns aGraphTraversal
by doing a merge (i.e.GraphTraversal<Edge,Edge>
GraphTraversalSource. mergeE(Traversal<?,Map<Object,Object>> searchCreate)
Spawns aGraphTraversal
by doing a merge (i.e.GraphTraversal<Edge,Edge>
GraphTraversalSource. mergeE(Traversal<?,Map<Object,Object>> searchCreate)
Spawns aGraphTraversal
by doing a merge (i.e.static GraphTraversal<Edge,Vertex>
__. otherV()
static GraphTraversal<Vertex,Edge>
__. outE(String... edgeLabels)
default GraphTraversal<S,Edge>
GraphTraversal. outE(String... edgeLabels)
Map theVertex
to its outgoing incident edges given the edge labels.static GraphTraversal<Edge,Vertex>
__. outV()
static <A> GraphTraversal<A,Edge>
__. subgraph(String sideEffectKey)
default GraphTraversal<S,Edge>
GraphTraversal. subgraph(String sideEffectKey)
Extracts a portion of the graph being traversed into aGraph
object held in the specified side-effect key.static GraphTraversal<Vertex,Edge>
__. toE(Direction direction, String... edgeLabels)
default GraphTraversal<S,Edge>
GraphTraversal. toE(Direction direction, String... edgeLabels)
Map theVertex
to its incident edges given the direction and edge labels.static GraphTraversal<Edge,Vertex>
__. toV(Direction direction)
-
Uses of Edge in org.apache.tinkerpop.gremlin.process.traversal.step
-
Uses of Edge in org.apache.tinkerpop.gremlin.process.traversal.step.branch
Methods in org.apache.tinkerpop.gremlin.process.traversal.step.branch that return types with arguments of type Edge Modifier and Type Method Description abstract Traversal<Vertex,Edge>
LocalTest. get_g_VX4X_localXbothEX1_createdX_limitX1XX(Object v4Id)
Traversal<Vertex,Edge>
LocalTest.Traversals. get_g_VX4X_localXbothEX1_createdX_limitX1XX(Object v4Id)
abstract Traversal<Vertex,Edge>
LocalTest. get_g_VX4X_localXbothEXknows_createdX_limitX1XX(Object v4Id)
Traversal<Vertex,Edge>
LocalTest.Traversals. get_g_VX4X_localXbothEXknows_createdX_limitX1XX(Object v4Id)
-
Uses of Edge in org.apache.tinkerpop.gremlin.process.traversal.step.filter
-
Uses of Edge in org.apache.tinkerpop.gremlin.process.traversal.step.map
Methods in org.apache.tinkerpop.gremlin.process.traversal.step.map that return Edge Modifier and Type Method Description protected Edge
AddEdgeStep. map(Traverser.Admin<S> traverser)
Methods in org.apache.tinkerpop.gremlin.process.traversal.step.map with parameters of type Edge Modifier and Type Method Description abstract Traversal<Edge,Edge>
VertexTest. get_g_EXe11X(Edge e11)
Traversal<Edge,Edge>
VertexTest.Traversals. get_g_EXe11X(Edge e11)
abstract Traversal<Edge,Edge>
VertexTest. get_g_EXe7_e11X(Edge e7, Edge e11)
Traversal<Edge,Edge>
VertexTest.Traversals. get_g_EXe7_e11X(Edge e7, Edge e11)
abstract Traversal<Edge,Edge>
VertexTest. get_g_EXlistXe7_e11XX(Edge e7, Edge e11)
Traversal<Edge,Edge>
VertexTest.Traversals. get_g_EXlistXe7_e11XX(Edge e7, Edge e11)
Method parameters in org.apache.tinkerpop.gremlin.process.traversal.step.map with type arguments of type Edge Modifier and Type Method Description protected Iterator<Vertex>
EdgeVertexStep. flatMap(Traverser.Admin<Edge> traverser)
protected Vertex
EdgeOtherVertexStep. map(Traverser.Admin<Edge> traverser)
-
Uses of Edge in org.apache.tinkerpop.gremlin.process.traversal.step.sideEffect
Method parameters in org.apache.tinkerpop.gremlin.process.traversal.step.sideEffect with type arguments of type Edge Modifier and Type Method Description protected void
SubgraphStep. sideEffect(Traverser.Admin<Edge> traverser)
-
Uses of Edge in org.apache.tinkerpop.gremlin.process.traversal.step.util.event
Methods in org.apache.tinkerpop.gremlin.process.traversal.step.util.event with parameters of type Edge Modifier and Type Method Description void
ConsoleMutationListener. edgeAdded(Edge edge)
void
MutationListener. edgeAdded(Edge edge)
Raised after a newEdge
is added.void
ConsoleMutationListener. edgePropertyChanged(Edge element, Property oldValue, Object setValue)
void
MutationListener. edgePropertyChanged(Edge element, Property oldValue, Object setValue)
Raised after the property of aEdge
changed.void
ConsoleMutationListener. edgePropertyRemoved(Edge element, Property removedValue)
void
MutationListener. edgePropertyRemoved(Edge element, Property property)
void
ConsoleMutationListener. edgeRemoved(Edge edge)
void
MutationListener. edgeRemoved(Edge edge)
Raised after anEdge
was removed from the graph.Constructors in org.apache.tinkerpop.gremlin.process.traversal.step.util.event with parameters of type Edge Constructor Description EdgeAddedEvent(Edge edge)
EdgePropertyChangedEvent(Edge edge, Property oldValue, Object newValue)
EdgePropertyRemovedEvent(Edge element, Property removed)
EdgeRemovedEvent(Edge edge)
-
Uses of Edge in org.apache.tinkerpop.gremlin.process.traversal.strategy.decoration
Methods in org.apache.tinkerpop.gremlin.process.traversal.strategy.decoration that return types with arguments of type Edge Modifier and Type Method Description Traversal<Edge,?>
SubgraphStrategy. getEdgeCriterion()
Method parameters in org.apache.tinkerpop.gremlin.process.traversal.strategy.decoration with type arguments of type Edge Modifier and Type Method Description SubgraphStrategy.Builder
SubgraphStrategy.Builder. edges(Traversal<Edge,?> edgePredicate)
The traversal predicate that defines the edges to include in the subgraph. -
Uses of Edge in org.apache.tinkerpop.gremlin.process.traversal.translator
Methods in org.apache.tinkerpop.gremlin.process.traversal.translator with parameters of type Edge Modifier and Type Method Description protected Script
DotNetTranslator.DefaultTypeTranslator. produceScript(Edge o)
protected Script
GolangTranslator.DefaultTypeTranslator. produceScript(Edge o)
protected Script
GroovyTranslator.DefaultTypeTranslator. produceScript(Edge o)
protected Script
JavascriptTranslator.DefaultTypeTranslator. produceScript(Edge o)
protected Script
PythonTranslator.DefaultTypeTranslator. produceScript(Edge o)
-
Uses of Edge in org.apache.tinkerpop.gremlin.structure
Methods in org.apache.tinkerpop.gremlin.structure that return Edge Modifier and Type Method Description Edge
Vertex. addEdge(String label, Vertex inVertex, Object... keyValues)
Add an outgoing edge to the vertex with provided label and edge properties as key/value pairs.Methods in org.apache.tinkerpop.gremlin.structure that return types with arguments of type Edge Modifier and Type Method Description Iterator<Edge>
Graph. edges(Object... edgeIds)
Iterator<Edge>
RemoteGraph. edges(Object... edgeIds)
This method returns an emptyIterator
- it is not meant to be called directly.Iterator<Edge>
Vertex. edges(Direction direction, String... edgeLabels)
Gets anIterator
of incident edges. -
Uses of Edge in org.apache.tinkerpop.gremlin.structure.io
Methods in org.apache.tinkerpop.gremlin.structure.io that return Edge Modifier and Type Method Description Edge
GraphReader. readEdge(InputStream inputStream, Function<Attachable<Edge>,Edge> edgeAttachMethod)
Reads a single edge from anInputStream
.Methods in org.apache.tinkerpop.gremlin.structure.io with parameters of type Edge Modifier and Type Method Description void
GraphWriter. writeEdge(OutputStream outputStream, Edge e)
Write an edge to a stream.Method parameters in org.apache.tinkerpop.gremlin.structure.io with type arguments of type Edge Modifier and Type Method Description Edge
GraphReader. readEdge(InputStream inputStream, Function<Attachable<Edge>,Edge> edgeAttachMethod)
Reads a single edge from anInputStream
.Edge
GraphReader. readEdge(InputStream inputStream, Function<Attachable<Edge>,Edge> edgeAttachMethod)
Reads a single edge from anInputStream
. -
Uses of Edge in org.apache.tinkerpop.gremlin.structure.io.binary.types
Methods in org.apache.tinkerpop.gremlin.structure.io.binary.types that return Edge Modifier and Type Method Description protected Edge
EdgeSerializer. readValue(Buffer buffer, GraphBinaryReader context)
Methods in org.apache.tinkerpop.gremlin.structure.io.binary.types with parameters of type Edge Modifier and Type Method Description protected void
EdgeSerializer. writeValue(Edge value, Buffer buffer, GraphBinaryWriter context)
-
Uses of Edge in org.apache.tinkerpop.gremlin.structure.io.graphml
Methods in org.apache.tinkerpop.gremlin.structure.io.graphml that return Edge Modifier and Type Method Description Edge
GraphMLReader. readEdge(InputStream inputStream, Function<Attachable<Edge>,Edge> edgeAttachMethod)
This method is not supported for this reader.Methods in org.apache.tinkerpop.gremlin.structure.io.graphml with parameters of type Edge Modifier and Type Method Description void
GraphMLWriter. writeEdge(OutputStream outputStream, Edge e)
This method is not supported for this writer.Method parameters in org.apache.tinkerpop.gremlin.structure.io.graphml with type arguments of type Edge Modifier and Type Method Description Edge
GraphMLReader. readEdge(InputStream inputStream, Function<Attachable<Edge>,Edge> edgeAttachMethod)
This method is not supported for this reader.Edge
GraphMLReader. readEdge(InputStream inputStream, Function<Attachable<Edge>,Edge> edgeAttachMethod)
This method is not supported for this reader. -
Uses of Edge in org.apache.tinkerpop.gremlin.structure.io.graphson
Methods in org.apache.tinkerpop.gremlin.structure.io.graphson that return Edge Modifier and Type Method Description Edge
GraphSONReader. readEdge(InputStream inputStream, Function<Attachable<Edge>,Edge> edgeAttachMethod)
Read anEdge
from output generated byGraphSONWriter.writeEdge(OutputStream, Edge)
or via anEdge
passed toGraphSONWriter.writeObject(OutputStream, Object)
.Edge
LegacyGraphSONReader. readEdge(InputStream inputStream, Function<Attachable<Edge>,Edge> edgeAttachMethod)
This method is not supported for this reader.Methods in org.apache.tinkerpop.gremlin.structure.io.graphson with parameters of type Edge Modifier and Type Method Description void
GraphSONWriter. writeEdge(OutputStream outputStream, Edge e)
Writes anEdge
object to the stream.Method parameters in org.apache.tinkerpop.gremlin.structure.io.graphson with type arguments of type Edge Modifier and Type Method Description Edge
GraphSONReader. readEdge(InputStream inputStream, Function<Attachable<Edge>,Edge> edgeAttachMethod)
Read anEdge
from output generated byGraphSONWriter.writeEdge(OutputStream, Edge)
or via anEdge
passed toGraphSONWriter.writeObject(OutputStream, Object)
.Edge
GraphSONReader. readEdge(InputStream inputStream, Function<Attachable<Edge>,Edge> edgeAttachMethod)
Read anEdge
from output generated byGraphSONWriter.writeEdge(OutputStream, Edge)
or via anEdge
passed toGraphSONWriter.writeObject(OutputStream, Object)
.Edge
LegacyGraphSONReader. readEdge(InputStream inputStream, Function<Attachable<Edge>,Edge> edgeAttachMethod)
This method is not supported for this reader.Edge
LegacyGraphSONReader. readEdge(InputStream inputStream, Function<Attachable<Edge>,Edge> edgeAttachMethod)
This method is not supported for this reader. -
Uses of Edge in org.apache.tinkerpop.gremlin.structure.io.gryo
Methods in org.apache.tinkerpop.gremlin.structure.io.gryo that return Edge Modifier and Type Method Description <I extends InputShim>
EdgeGryoSerializersV1d0.EdgeSerializer. read(KryoShim<I,?> kryo, I input, Class<Edge> edgeClass)
<I extends InputShim>
EdgeGryoSerializersV3d0.EdgeSerializer. read(KryoShim<I,?> kryo, I input, Class<Edge> edgeClass)
Edge
GryoReader. readEdge(InputStream inputStream, Function<Attachable<Edge>,Edge> edgeAttachMethod)
Read anEdge
from output generated byGryoWriter.writeEdge(OutputStream, Edge)
or via anEdge
passed toGryoWriter.writeObject(OutputStream, Object)
.Methods in org.apache.tinkerpop.gremlin.structure.io.gryo with parameters of type Edge Modifier and Type Method Description <O extends OutputShim>
voidGryoSerializersV1d0.EdgeSerializer. write(KryoShim<?,O> kryo, O output, Edge edge)
<O extends OutputShim>
voidGryoSerializersV3d0.EdgeSerializer. write(KryoShim<?,O> kryo, O output, Edge edge)
void
GryoWriter. writeEdge(OutputStream outputStream, Edge e)
Write an edge to a stream.Method parameters in org.apache.tinkerpop.gremlin.structure.io.gryo with type arguments of type Edge Modifier and Type Method Description <I extends InputShim>
EdgeGryoSerializersV1d0.EdgeSerializer. read(KryoShim<I,?> kryo, I input, Class<Edge> edgeClass)
<I extends InputShim>
EdgeGryoSerializersV3d0.EdgeSerializer. read(KryoShim<I,?> kryo, I input, Class<Edge> edgeClass)
Edge
GryoReader. readEdge(InputStream inputStream, Function<Attachable<Edge>,Edge> edgeAttachMethod)
Read anEdge
from output generated byGryoWriter.writeEdge(OutputStream, Edge)
or via anEdge
passed toGryoWriter.writeObject(OutputStream, Object)
.Edge
GryoReader. readEdge(InputStream inputStream, Function<Attachable<Edge>,Edge> edgeAttachMethod)
Read anEdge
from output generated byGryoWriter.writeEdge(OutputStream, Edge)
or via anEdge
passed toGryoWriter.writeObject(OutputStream, Object)
. -
Uses of Edge in org.apache.tinkerpop.gremlin.structure.util
Fields in org.apache.tinkerpop.gremlin.structure.util with type parameters of type Edge Modifier and Type Field Description static Comparator<Edge>
Comparators. EDGE_COMPARATOR
Methods in org.apache.tinkerpop.gremlin.structure.util that return Edge Modifier and Type Method Description static Edge
Attachable.Method. createEdge(Attachable<Edge> attachableEdge, Graph hostGraph)
static Edge
Attachable.Method. createEdge(Attachable<Edge> attachableEdge, Vertex hostVertex)
Methods in org.apache.tinkerpop.gremlin.structure.util that return types with arguments of type Edge Modifier and Type Method Description static Optional<Edge>
Attachable.Method. getEdge(Attachable<Edge> attachableEdge, Graph hostGraph)
static Optional<Edge>
Attachable.Method. getEdge(Attachable<Edge> attachableEdge, Vertex hostVertex)
Methods in org.apache.tinkerpop.gremlin.structure.util with parameters of type Edge Modifier and Type Method Description static boolean
ElementHelper. areEqual(Edge a, Edge b)
static String
StringFactory. edgeString(Edge edge)
Construct the representation for aEdge
.Method parameters in org.apache.tinkerpop.gremlin.structure.util with type arguments of type Edge Modifier and Type Method Description static Edge
Attachable.Method. createEdge(Attachable<Edge> attachableEdge, Graph hostGraph)
static Edge
Attachable.Method. createEdge(Attachable<Edge> attachableEdge, Vertex hostVertex)
static Optional<Edge>
Attachable.Method. getEdge(Attachable<Edge> attachableEdge, Graph hostGraph)
static Optional<Edge>
Attachable.Method. getEdge(Attachable<Edge> attachableEdge, Vertex hostVertex)
-
Uses of Edge in org.apache.tinkerpop.gremlin.structure.util.detached
Classes in org.apache.tinkerpop.gremlin.structure.util.detached that implement Edge Modifier and Type Class Description class
DetachedEdge
Methods in org.apache.tinkerpop.gremlin.structure.util.detached that return Edge Modifier and Type Method Description Edge
DetachedVertex. addEdge(String label, Vertex inVertex, Object... keyValues)
Methods in org.apache.tinkerpop.gremlin.structure.util.detached that return types with arguments of type Edge Modifier and Type Method Description Iterator<Edge>
DetachedVertex. edges(Direction direction, String... edgeLabels)
Methods in org.apache.tinkerpop.gremlin.structure.util.detached with parameters of type Edge Modifier and Type Method Description static DetachedEdge
DetachedFactory. detach(Edge edge, boolean withProperties)
Constructors in org.apache.tinkerpop.gremlin.structure.util.detached with parameters of type Edge Constructor Description DetachedEdge(Edge edge, boolean withProperties)
-
Uses of Edge in org.apache.tinkerpop.gremlin.structure.util.empty
Methods in org.apache.tinkerpop.gremlin.structure.util.empty that return types with arguments of type Edge Modifier and Type Method Description Iterator<Edge>
EmptyGraph. edges(Object... edgeIds)
-
Uses of Edge in org.apache.tinkerpop.gremlin.structure.util.reference
Classes in org.apache.tinkerpop.gremlin.structure.util.reference that implement Edge Modifier and Type Class Description class
ReferenceEdge
Methods in org.apache.tinkerpop.gremlin.structure.util.reference that return Edge Modifier and Type Method Description Edge
ReferenceVertex. addEdge(String label, Vertex inVertex, Object... keyValues)
Methods in org.apache.tinkerpop.gremlin.structure.util.reference that return types with arguments of type Edge Modifier and Type Method Description Iterator<Edge>
ReferenceVertex. edges(Direction direction, String... edgeLabels)
Methods in org.apache.tinkerpop.gremlin.structure.util.reference with parameters of type Edge Modifier and Type Method Description static ReferenceEdge
ReferenceFactory. detach(Edge edge)
Constructors in org.apache.tinkerpop.gremlin.structure.util.reference with parameters of type Edge Constructor Description ReferenceEdge(Edge edge)
-
Uses of Edge in org.apache.tinkerpop.gremlin.structure.util.star
Classes in org.apache.tinkerpop.gremlin.structure.util.star that implement Edge Modifier and Type Class Description class
StarGraph.StarEdge
class
StarGraph.StarInEdge
class
StarGraph.StarOutEdge
Fields in org.apache.tinkerpop.gremlin.structure.util.star with type parameters of type Edge Modifier and Type Field Description protected Map<String,List<Edge>>
StarGraph.StarVertex. inEdges
protected Map<String,List<Edge>>
StarGraph.StarVertex. outEdges
Methods in org.apache.tinkerpop.gremlin.structure.util.star that return Edge Modifier and Type Method Description Edge
StarGraph.StarAdjacentVertex. addEdge(String label, Vertex inVertex, Object... keyValues)
Edge
StarGraph.StarVertex. addEdge(String label, Vertex inVertex, Object... keyValues)
Methods in org.apache.tinkerpop.gremlin.structure.util.star that return types with arguments of type Edge Modifier and Type Method Description Iterator<Edge>
StarGraph. edges(Object... edgeIds)
Iterator<Edge>
StarGraph.StarAdjacentVertex. edges(Direction direction, String... edgeLabels)
Iterator<Edge>
StarGraph.StarVertex. edges(Direction direction, String... edgeLabels)
Method parameters in org.apache.tinkerpop.gremlin.structure.util.star with type arguments of type Edge Modifier and Type Method Description static void
StarGraphGraphSONDeserializer. readStarGraphEdges(Function<Attachable<Edge>,Edge> edgeMaker, StarGraph starGraph, Map<String,Object> vertexData, String direction)
A helper function for reading vertex edges from a serializedStarGraph
(i.e.static void
StarGraphGraphSONDeserializer. readStarGraphEdges(Function<Attachable<Edge>,Edge> edgeMaker, StarGraph starGraph, Map<String,Object> vertexData, String direction)
A helper function for reading vertex edges from a serializedStarGraph
(i.e. -
Uses of Edge in org.apache.tinkerpop.gremlin.tinkergraph.process.computer
Methods in org.apache.tinkerpop.gremlin.tinkergraph.process.computer with parameters of type Edge Modifier and Type Method Description boolean
TinkerGraphComputerView. legalEdge(Vertex vertex, Edge edge)
Method parameters in org.apache.tinkerpop.gremlin.tinkergraph.process.computer with type arguments of type Edge Modifier and Type Method Description GraphComputer
TinkerGraphComputer. edges(Traversal<Vertex,Edge> edgeFilter)
-
Uses of Edge in org.apache.tinkerpop.gremlin.tinkergraph.structure
Classes in org.apache.tinkerpop.gremlin.tinkergraph.structure that implement Edge Modifier and Type Class Description class
TinkerEdge
Fields in org.apache.tinkerpop.gremlin.tinkergraph.structure with type parameters of type Edge Modifier and Type Field Description protected Map<Object,Edge>
TinkerGraph. edges
protected Map<String,Set<Edge>>
TinkerVertex. inEdges
protected Map<String,Set<Edge>>
TinkerVertex. outEdges
Methods in org.apache.tinkerpop.gremlin.tinkergraph.structure that return Edge Modifier and Type Method Description protected static Edge
TinkerHelper. addEdge(TinkerGraph graph, TinkerVertex outVertex, TinkerVertex inVertex, String label, Object... keyValues)
Edge
TinkerVertex. addEdge(String label, Vertex vertex, Object... keyValues)
Methods in org.apache.tinkerpop.gremlin.tinkergraph.structure that return types with arguments of type Edge Modifier and Type Method Description Iterator<Edge>
TinkerGraph. edges(Object... edgeIds)
Iterator<Edge>
TinkerVertex. edges(Direction direction, String... edgeLabels)
static Map<Object,Edge>
TinkerHelper. getEdges(TinkerGraph graph)
Methods in org.apache.tinkerpop.gremlin.tinkergraph.structure with parameters of type Edge Modifier and Type Method Description protected static void
TinkerHelper. addInEdge(TinkerVertex vertex, String label, Edge edge)
protected static void
TinkerHelper. addOutEdge(TinkerVertex vertex, String label, Edge edge)
-