afs commented on issue #2975:
URL: https://github.com/apache/jena/issues/2975#issuecomment-2612288690
`checkValidIriAndNotAReference` -- yes "checkValidIriForRDF"
`jena-iri3986` is general IRI processor - it does not apply or check RDF
rules.
`IRIx3986` is the adapter from jena-irir3986 to `IRIx` (which Jena uses
everywhere).
A parser will always resolve a IRI against the base (there is always a base):
```java
public static void iriProcess(final String iriStr) {
IRIx iri = IRIx.create(iriStr);
System.out.println("Argument: "+iri);
IRIx base = IRIs.getSystemBase();
IRIx iriResolved = base.resolve(iri);
System.out.println("iriResolved ="+iriResolved);
System.out.println("Reference: "+iriResolved.isReference());
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]