Class ComputerGraph.ComputerEdge
- java.lang.Object
 - 
- org.apache.tinkerpop.gremlin.process.computer.util.ComputerGraph.ComputerElement
 - 
- org.apache.tinkerpop.gremlin.process.computer.util.ComputerGraph.ComputerEdge
 
 
 
- 
- All Implemented Interfaces:
 Edge,Element,WrappedEdge<Edge>,WrappedElement<Element>
- Enclosing class:
 - ComputerGraph
 
public class ComputerGraph.ComputerEdge extends ComputerGraph.ComputerElement implements Edge, WrappedEdge<Edge>
 
- 
- 
Nested Class Summary
- 
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 interface org.apache.tinkerpop.gremlin.structure.Edge
DEFAULT_LABEL 
 - 
 
- 
Constructor Summary
Constructors Constructor Description ComputerEdge(Edge edge) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EdgegetBaseEdge()VertexinVertex()Get the incoming/head vertex of this edge.VertexoutVertex()Get the outgoing/tail vertex of this edge.<V> Iterator<Property<V>>properties(String... propertyKeys)Get anIteratorof properties where thepropertyKeysis meant to be a filter on the available keys.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.process.computer.util.ComputerGraph.ComputerElement
equals, getBaseElement, graph, hashCode, id, keys, label, property, property, remove, toString, value, values 
- 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait 
- 
Methods inherited from interface org.apache.tinkerpop.gremlin.structure.Edge
bothVertices 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
ComputerEdge
public ComputerEdge(Edge edge)
 
 - 
 
- 
Method Detail
- 
vertices
public Iterator<Vertex> vertices(Direction direction)
Description copied from interface:EdgeRetrieve the vertex (or vertices) associated with this edge as defined by the direction. If the direction isDirection.BOTHthen the iterator order is:Direction.OUTthenDirection.IN. 
- 
outVertex
public Vertex outVertex()
Description copied from interface:EdgeGet the outgoing/tail vertex of this edge. 
- 
inVertex
public Vertex inVertex()
Description copied from interface:EdgeGet the incoming/head vertex of this edge. 
- 
properties
public <V> Iterator<Property<V>> properties(String... propertyKeys)
Description copied from interface:ElementGet anIteratorof properties where thepropertyKeysis meant to be a filter on the available keys. If no keys are provide then return all the properties.- Specified by:
 propertiesin interfaceEdge- Specified by:
 propertiesin interfaceElement- Overrides:
 propertiesin classComputerGraph.ComputerElement
 
- 
getBaseEdge
public Edge getBaseEdge()
- Specified by:
 getBaseEdgein interfaceWrappedEdge<Edge>
 
 - 
 
 -