Package org.apache.stanbol.factstore.model

Examples of org.apache.stanbol.factstore.model.FactResult


          frs = new FactResultSet();
          frs.setHeader(header);

          while (rs.next()) {
            FactResult result = new FactResult();
            List<String> values = new ArrayList<String>();
            for (String head : header) {
              values.add(rs.getString(head));
            }
            result.setValues(values);
            frs.addFactResult(result);
          }
        }

      } catch (Exception e) {
View Full Code Here

TOP

Related Classes of org.apache.stanbol.factstore.model.FactResult

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.