Package com.complexible.common.rdf.query
Interface Edge
-
- All Known Implementing Classes:
ImmutableEdge
public interface Edge
- Since:
- 5.0.4
- Version:
- 6.0
- Author:
- Evren Sirin
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BindingSet
getBindings()
Returns the bindings for the edge.Value
getEnd()
Returns the end node of the edge.Value
getStart()
Returns the start node of the edge.
-
-
-
Method Detail
-
getStart
Value getStart()
Returns the start node of the edge. Equivalent togetBindings().getValue(getStartVar())
.- Returns:
- the start node of the edge
-
getEnd
Value getEnd()
Returns the end node of the edge. Equivalent togetBindings().getValue(getEndVar())
.- Returns:
- the end node of the edge
-
getBindings
BindingSet getBindings()
Returns the bindings for the edge.- Returns:
- the bindings for the edge.
-
-