-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for #25 (Broken lambdas due to variable scoping).
- Loading branch information
Showing
5 changed files
with
53 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
...nt/jenax-norse-terms/src/main/java/org/aksw/jenax/norse/term/sparql/NorseTermsSparql.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package org.aksw.jenax.norse.term.sparql; | ||
|
||
import org.aksw.jenax.norse.term.core.NorseTerms; | ||
|
||
public class NorseTermsSparql { | ||
public static final String NS = NorseTerms.NS + "sparql."; | ||
public static final String fn = NorseTerms.NS + "fn"; | ||
|
||
public static final String fnOf = NorseTerms.NS + "fn.of"; | ||
public static final String fnCall = NorseTerms.NS + "fn.call"; | ||
|
||
// Move to Map | ||
public static final String mapComputeIfAbsent = NorseTerms.NS + "map.computeIfAbsent"; | ||
|
||
} |