Class ReferenceEdge
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.structure.util.reference.ReferenceElement<Edge>
-
- org.apache.tinkerpop.gremlin.structure.util.reference.ReferenceEdge
-
- All Implemented Interfaces:
Serializable
,Edge
,Element
,Attachable<Edge>
public class ReferenceEdge extends ReferenceElement<Edge> implements Edge
- Author:
- Marko A. Rodriguez (http://markorodriguez.com)
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.structure.util.Attachable
Attachable.Exceptions, Attachable.Method
-
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.structure.Edge
Edge.Exceptions
-
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.structure.Element
Element.Exceptions
-
-
Field Summary
-
Fields inherited from class org.apache.tinkerpop.gremlin.structure.util.reference.ReferenceElement
id, label
-
Fields inherited from interface org.apache.tinkerpop.gremlin.structure.Edge
DEFAULT_LABEL
-
-
Constructor Summary
Constructors Constructor Description ReferenceEdge(Object id, String label, ReferenceVertex inVertex, ReferenceVertex outVertex)
ReferenceEdge(Edge edge)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Vertex
inVertex()
Get the incoming/head vertex of this edge.Vertex
outVertex()
Get the outgoing/tail vertex of this edge.<V> Iterator<Property<V>>
properties(String... propertyKeys)
Get anIterator
of properties where thepropertyKeys
is meant to be a filter on the available keys.<V> Property<V>
property(String key, V value)
Add or set a property value for theElement
given its key.void
remove()
Removes theElement
from the graph.String
toString()
Iterator<Vertex>
vertices(Direction direction)
Retrieve the vertex (or vertices) associated with this edge as defined by the direction.-
Methods inherited from class org.apache.tinkerpop.gremlin.structure.util.reference.ReferenceElement
equals, get, graph, hashCode, id, label
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.tinkerpop.gremlin.structure.util.Attachable
attach
-
Methods inherited from interface org.apache.tinkerpop.gremlin.structure.Edge
bothVertices
-
-
-
-
Constructor Detail
-
ReferenceEdge
public ReferenceEdge(Edge edge)
-
ReferenceEdge
public ReferenceEdge(Object id, String label, ReferenceVertex inVertex, ReferenceVertex outVertex)
-
-
Method Detail
-
property
public <V> Property<V> property(String key, V value)
Description copied from interface:Element
Add or set a property value for theElement
given its key.
-
remove
public void remove()
Description copied from interface:Element
Removes theElement
from the graph.
-
vertices
public Iterator<Vertex> vertices(Direction direction)
Description copied from interface:Edge
Retrieve the vertex (or vertices) associated with this edge as defined by the direction. If the direction isDirection.BOTH
then the iterator order is:Direction.OUT
thenDirection.IN
.
-
inVertex
public Vertex inVertex()
Description copied from interface:Edge
Get the incoming/head vertex of this edge.
-
outVertex
public Vertex outVertex()
Description copied from interface:Edge
Get the outgoing/tail vertex of this edge.
-
properties
public <V> Iterator<Property<V>> properties(String... propertyKeys)
Description copied from interface:Edge
Get anIterator
of properties where thepropertyKeys
is meant to be a filter on the available keys. If no keys are provide then return all the properties.- Specified by:
properties
in interfaceEdge
- Specified by:
properties
in interfaceElement
-
-