1 6 7 package com.hp.hpl.jena.util.iterator; 8 9 23 24 public interface ExtendedIterator extends ClosableIterator 25 { 26 29 public Object removeNext(); 30 31 36 public ExtendedIterator andThen( ClosableIterator other ); 37 38 43 public ExtendedIterator filterKeep( Filter f ); 44 45 50 public ExtendedIterator filterDrop( Filter f ); 51 52 57 public ExtendedIterator mapWith( Map1 map1 ); 58 } 59 60 89 | Popular Tags |