Class BGPCollector<X extends java.lang.Exception>

  • All Implemented Interfaces:
    QueryModelVisitor<X>

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

      • visitor

        private final QueryModelVisitor<X extends java.lang.Exception> visitor
        Deprecated, for removal: This API element is subject to removal in a future version.
      • statementPatterns

        private java.util.List<StatementPattern> statementPatterns
        Deprecated, for removal: This API element is subject to removal in a future version.
    • Constructor Detail

      • BGPCollector

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

      • getStatementPatterns

        public java.util.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 extends java.lang.Exception
        Deprecated, for removal: This API element is subject to removal in a future version.
        Specified by:
        meet in interface QueryModelVisitor<X extends java.lang.Exception>
        Overrides:
        meet in class AbstractQueryModelVisitor<X extends java.lang.Exception>
        Throws:
        X extends java.lang.Exception
      • meet

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

        protected void meetNode​(QueryModelNode node)
                         throws X extends java.lang.Exception
        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 java.lang.Exception>
        Parameters:
        node - The node that is being visited.
        Throws:
        X extends java.lang.Exception