Package com.clarkparsia.empire.ds.impl

Examples of com.clarkparsia.empire.ds.impl.AbstractResultSet


   * @inheritDoc
   */
  public ResultSet selectQuery(final String theQuery) throws QueryException {
    try {
            final TupleQueryResult aTupleQueryResult = Repositories.selectQuery(mRepo, QueryLanguage.SERQL, theQuery);
            return new AbstractResultSet(AdunaIterations.iterator(aTupleQueryResult)) {
                @Override
                public void close() {
                    // no-op
                }
            };
View Full Code Here

TOP

Related Classes of com.clarkparsia.empire.ds.impl.AbstractResultSet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.