1 5 6 7 package com.hp.hpl.jena.rdql; 8 9 import java.util.*; 10 11 23 24 public interface QueryResults extends java.util.Iterator  25 { 26 29 30 public void remove() throws java.lang.UnsupportedOperationException ; 31 32 35 public boolean hasNext() ; 36 37 40 41 public Object next() ; 42 43 49 50 public void close() ; 51 52 54 public int getRowNumber() ; 55 56 58 public List getResultVars() ; 59 60 66 67 public List getAll() ; 68 69 } 70 96 97 | Popular Tags |