454647484950515253
@Override public NodeValue eval(FunctionEnv env) { JenaUUID uuid = factory.generate() ; // uuid.asUUID() Node n = Node.createURI(uuid.asURI()) ; return NodeValue.makeNode(n) ; } }
7172737475767778798081
JenaUUID uuid = JenaUUID.generate() ; String str = null ; if ( asURN ) str = uuid.asURN() ; else if ( asURI ) str = uuid.asURI() ; else if ( asPlain ) str = uuid.asString() ; if ( str == null ) str = uuid.asString() ; System.out.println(str) ;