All Downloads are FREE. Search and download functionalities are using the official Maven repository.

be.ugent.rml.term.NamedNode Maven / Gradle / Ivy

Go to download

The RMLMapper executes RML rules to generate high quality Linked Data from multiple originally (semi-)structured data sources.

There is a newer version: 7.2.0
Show newest version
package be.ugent.rml.term;

import org.eclipse.rdf4j.model.impl.SimpleIRI;

public class NamedNode extends SimpleIRI implements Term {

    public NamedNode(final String iri) {
        super(iri);
    }

    @Override
    public String getValue() {
        return this.stringValue();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy