return l;
}
public void testTypes()
throws Exception {
NumericValue
intLit = new SesameNumericValue(5),
doubleLit = new SesameNumericValue(3.1415926);
assertEquals(intLit.getDatatype(), NumericValue.Type.INTEGER);
assertEquals(doubleLit.getDatatype(), NumericValue.Type.DOUBLE);
assertEquals(
intLit.abs().getDatatype(),
NumericValue.Type.INTEGER);
assertEquals(
doubleLit.abs().getDatatype(),
NumericValue.Type.DOUBLE);