return new Statement(subject, comment, ag, object, rel);
}
static void writeTerm(ObjectOutput out, Term term) throws IOException {
// 1: function enum, never null
FunctionEnum fx = term.getFunctionEnum();
out.writeObject(fx);
// 2: function arguments, may be null
List<BELObject> fxargs = term.getFunctionArguments();
if (fxargs == null) {
out.writeByte(0);