Giving array as parameter to a Jena built-in
问题 I need to create a new built-in for Jena. With this one I would like to be able to extract the minimum date from where it is. I just wondering if it is possible to give a class of datas to a built-in instead of just one parameter. Here is the bodyCall of my function : @Override public boolean bodyCall(Node[] args, int length, RuleContext context) { System.out.println("Entra"); checkArgs(length, context); BindingEnvironment env = context.getEnv(); Node n1 = getArg(0, args, context); Node n2 =