830831832833834835836
@Override public ValueConstant visit(ASTIRI node, Object data) throws VisitorException { return new ValueConstant(valueFactory.createURI(node.getValue())); }
868869870871872873874
} else { literal = valueFactory.createLiteral(label); } return new ValueConstant(literal); }
876877878879880881882
@Override public ValueConstant visit(ASTNumericLiteral node, Object data) throws VisitorException { Literal literal = valueFactory.createLiteral(node.getValue(), node.getDatatype()); return new ValueConstant(literal); }
883884885886887888889
@Override public ValueConstant visit(ASTTrue node, Object data) throws VisitorException { return new ValueConstant(valueFactory.createLiteral(true)); }
890891892893894895896
@Override public ValueConstant visit(ASTFalse node, Object data) throws VisitorException { return new ValueConstant(valueFactory.createLiteral(false)); }