268269270271272273274275276277278
*/ static public Resource asRDF(Model model, ResultSet resultSet) { RDFOutput rOut = new RDFOutput() ; return rOut.asRDF(model, resultSet) ; } /** Encode the boolean as RDF in the model provided. * * @param model The place where to put the RDF.
281282283284285286287288289290291
*/ static public Resource asRDF(Model model, boolean booleanResult) { RDFOutput rOut = new RDFOutput() ; return rOut.asRDF(model, booleanResult) ; } /** Output a ResultSet in some format. * * @param resultSet Result set
267268269270271272273274275276277
280281282283284285286287288289290