if (content.contains("e") || content.contains("E"))
try {
literal = LiteralFactory.createTypedLiteralWithoutLazyLiteral("\"" + content
+ "\"", "<http://www.w3.org/2001/XMLSchema#double>");
} catch (final URISyntaxException e) {
throw new RIFException(e.toString());
}
else
try {
literal = LiteralFactory.createTypedLiteralWithoutLazyLiteral("\"" + content
+ "\"", "<http://www.w3.org/2001/XMLSchema#decimal>");
} catch (final URISyntaxException e) {
throw new RIFException(e.toString());
}
return new Constant(literal, argu);
}