Skip to content

Commit

Permalink
Fix #151
Browse files Browse the repository at this point in the history
  • Loading branch information
enridaga committed Nov 23, 2021
1 parent 716ea26 commit df64f0c
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,14 @@ public static void enablingFunctions() {
ReflectionFunctionFactory.get().makeFunction(String.class, "endsWith"));
FunctionRegistry.get().put(Triplifier.FACADE_X_CONST_NAMESPACE_IRI + "String.endsWith",
ReflectionFunctionFactory.get().makeFunction(String.class, "endsWith"));
FunctionRegistry.get().put(Triplifier.FACADE_X_CONST_NAMESPACE_IRI + "String.replace",
ReflectionFunctionFactory.get().makeFunction(String.class, "replace"));
FunctionRegistry.get().put(Triplifier.FACADE_X_CONST_NAMESPACE_IRI + "String.strip",
ReflectionFunctionFactory.get().makeFunction(String.class, "strip"));
FunctionRegistry.get().put(Triplifier.FACADE_X_CONST_NAMESPACE_IRI + "String.stripLeading",
ReflectionFunctionFactory.get().makeFunction(String.class, "stripLeading"));
FunctionRegistry.get().put(Triplifier.FACADE_X_CONST_NAMESPACE_IRI + "String.stripTrailing",
ReflectionFunctionFactory.get().makeFunction(String.class, "stripTrailing"));
FunctionRegistry.get().put(Triplifier.FACADE_X_CONST_NAMESPACE_IRI + "DigestUtils.md5Hex",
ReflectionFunctionFactory.get().makeFunction(DigestUtils.class, "md5Hex"));

Expand Down

0 comments on commit df64f0c

Please sign in to comment.