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.EdgeEdge.Exceptions
 - 
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.structure.ElementElement.Exceptions
 
- 
 - 
Field Summary- 
Fields inherited from interface org.apache.tinkerpop.gremlin.structure.EdgeDEFAULT_LABEL
 
- 
 - 
Constructor SummaryConstructors Constructor Description ComputerEdge(Edge edge)
 - 
Method SummaryAll 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.ComputerElementequals, getBaseElement, graph, hashCode, id, keys, label, property, property, remove, toString, value, values
 - 
Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface org.apache.tinkerpop.gremlin.structure.EdgebothVertices
 
- 
 
- 
- 
- 
Constructor Detail- 
ComputerEdgepublic ComputerEdge(Edge edge) 
 
- 
 - 
Method Detail- 
verticespublic 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.
 - 
outVertexpublic Vertex outVertex() Description copied from interface:EdgeGet the outgoing/tail vertex of this edge.
 - 
inVertexpublic Vertex inVertex() Description copied from interface:EdgeGet the incoming/head vertex of this edge.
 - 
propertiespublic <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 interface- Edge
- Specified by:
- propertiesin interface- Element
- Overrides:
- propertiesin class- ComputerGraph.ComputerElement
 
 - 
getBaseEdgepublic Edge getBaseEdge() - Specified by:
- getBaseEdgein interface- WrappedEdge<Edge>
 
 
- 
 
-