Advertisement
Guest User

Untitled

a guest
May 23rd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. public String getOtherMuscles(String exerciseName) {
  2. return ont + rdf + rdfs + "SELECT ?name ?OtherMuscles WHERE { " +
  3. " ?Exercise ont:Works ?mainMuscle; " +
  4. " rdfs:label ?name; " +
  5. " ont:hasOtherMuscles ?otherM . " +
  6. " ?otherM ont:hasOtherMuscle ?OtherMuscles . " +
  7. " FILTER (regex(?name, \"" + exerciseName + "\", \"i\")) " +
  8. " } " +
  9. "LIMIT 100";
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement