if ( node.isLiteral() ) return node.getLiteral().getLexicalForm() ;
if ( node.isURI() ) return node.getURI() ;
// if ( node.isBlank() ) return node.getBlankNodeId().getLabelString() ;
// if ( node.isBlank() ) return "" ;
if ( node.isBlank() )
NodeValue.raise(new ExprTypeException("Blank node: "+node)) ;
NodeValue.raise(new ExprEvalException("Not a string: "+node)) ;
return "[undef]" ;
}