/* * Copyright Aduna (http://www.aduna-software.com/) (c) 1997-2006. * * Licensed under the Aduna BSD-style license. */ package org.openrdf.query; import info.aduna.iteration.CloseableIteration; /** * Super type of all query result types (TupleQueryResult, GraphQueryResult, * etc.). * * @author Arjohn Kampman */ public interface QueryResult<T> extends CloseableIteration<T, QueryEvaluationException> { }