1 6 7 package com.hp.hpl.jena.graph; 8 9 15 public interface TripleBoundary 16 { 17 21 boolean stopAt( Triple t ); 22 23 26 public static final TripleBoundary stopNowhere = new TripleBoundary() 27 { public boolean stopAt( Triple t ) { return false; } }; 28 29 32 public static final TripleBoundary stopAtAnonObject = new TripleBoundary() 33 { public boolean stopAt( Triple t ) { return t.getObject().isBlank(); } }; 34 35 } 36 37 | Popular Tags |