Interface Triplet<V,E>

All Known Implementing Classes:
TripletImpl

public interface Triplet<V,E>
A generalization of a triple; an edge in a graph with node type V and edge attribute type E
  • Method Details

    • getSubject

      V getSubject()
    • getPredicate

      E getPredicate()
    • getObject

      V getObject()
    • swap

      static <V,E> Triplet<V,E> swap(Triplet<V,E> t)