for (int i = 0; i < strs.length; i++) {
strs[i] = "hello" + i;
}
args[0] = new AviatorRuntimeJavaType(strs);
SeqPredicateFunction predicate =
new SeqPredicateFunction("eq_temp_1", OperatorType.EQ, new AviatorString("hello1"));
Map<String, Object> env = new HashMap<String, Object>();
env.putAll(AviatorEvaluator.FUNC_MAP);
env.put("eq_temp_1", predicate);
args[1] = new AviatorJavaType("eq_temp_1");
SeqFilterFunction fun = new SeqFilterFunction();