I wonder if it would be useful to generify the `RDFVisitor` interface...

public interface RDFVisitor<B,U,L> {

    B visitBlank( Resource r, AnonId id );
    U visitURI( Resource r, String uri );
    L visitLiteral( Literal l );

}

Reply via email to