Class BGPCollector<X extends Exception>

All Implemented Interfaces:
QueryModelVisitor<X>

@Deprecated(forRemoval=true, since="4.1.0") public class BGPCollector<X extends Exception> extends QueryModelVisitorBase<X>
Deprecated, for removal: This API element is subject to removal in a future version.
Basic graph pattern collector.
  • Constructor Details

    • BGPCollector

      public BGPCollector(QueryModelVisitor<X> visitor)
      Deprecated, for removal: This API element is subject to removal in a future version.
  • Method Details

    • getStatementPatterns

      public List<StatementPattern> getStatementPatterns()
      Deprecated, for removal: This API element is subject to removal in a future version.
    • meet

      public void meet(Join node) throws X
      Deprecated, for removal: This API element is subject to removal in a future version.
      Specified by:
      meet in interface QueryModelVisitor<X extends Exception>
      Overrides:
      meet in class AbstractQueryModelVisitor<X extends Exception>
      Throws:
      X
    • meet

      public void meet(StatementPattern sp) throws X
      Deprecated, for removal: This API element is subject to removal in a future version.
      Specified by:
      meet in interface QueryModelVisitor<X extends Exception>
      Overrides:
      meet in class AbstractQueryModelVisitor<X extends Exception>
      Throws:
      X
    • meetNode

      protected void meetNode(QueryModelNode node) throws X
      Deprecated, for removal: This API element is subject to removal in a future version.
      Description copied from class: AbstractQueryModelVisitor
      Method called by all of the other meet methods that are not overridden in subclasses. This method can be overridden in subclasses to define default behaviour when visiting nodes. The default behaviour of this method is to visit the node's children.
      Overrides:
      meetNode in class AbstractQueryModelVisitor<X extends Exception>
      Parameters:
      node - The node that is being visited.
      Throws:
      X