All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.rutledgepaulv.qbuilders.nodes.Visitable Maven / Gradle / Ivy

There is a newer version: 1.6
Show newest version
package com.github.rutledgepaulv.qbuilders.nodes;

import com.github.rutledgepaulv.qbuilders.visitors.ContextualNodeVisitor;

public interface Visitable {

    default  T visit(ContextualNodeVisitor visitor) {
        return visit(visitor, null);
    }

      T visit(ContextualNodeVisitor visitor, S context);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy